cas.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. html,body {
  2. margin:0;
  3. padding:0;
  4. border:0;
  5. background:transparent;
  6. color:#000;
  7. }
  8. body {font:normal 76% Arial,Helvetica,Verdana,sans-serif;}
  9. acronym {
  10. border-bottom:1px dotted #ccc;
  11. cursor:help;
  12. }
  13. a img,#header img {
  14. border:0;
  15. display:block;
  16. }
  17. .bold {font-weight:bold;}
  18. .important {color:#b00;}
  19. .center {text-align:center;}
  20. .right {text-align:right;}
  21. .left {text-align:left;}
  22. /*************************************** HEADER */
  23. #header{
  24. margin:0;
  25. padding:0;
  26. width:100%;
  27. clear:both;
  28. background:#b00 url(../images/bgPageHeader.gif) top left repeat scroll;
  29. }
  30. #header a {
  31. display:block;
  32. margin:0;
  33. padding:0 0 0 3px;
  34. text-decoration:none;
  35. background-color:#b00;
  36. color:#ffc;
  37. font-size:1em;
  38. line-height:19px;
  39. }
  40. #header a.task {
  41. float:right;
  42. margin:0 0 0 1px;
  43. padding:0 5px 0 20px;
  44. line-height:20px;
  45. text-decoration:none;
  46. color:#ffc;
  47. }
  48. #header a:hover.task, #header a:focus.task {background-color:#c33 !important;}
  49. #header a.task#helpBtn {
  50. background:#b00 url(../images/help.gif) 5px 5px no-repeat scroll;
  51. /* display:none; */
  52. }
  53. #header a.task#aboutBtn {background:#b00 url(../images/about.gif) 5px 5px no-repeat scroll;}
  54. #header a.task#menuBtn {background:#b00 url(../images/menu.gif) 5px 5px no-repeat scroll;}
  55. #header a.task#logoutBtn {background:#b00 url(../images/logout.gif) 5px 5px no-repeat scroll;}
  56. #header h1 {
  57. margin:0 0 0 5%;
  58. padding:0;
  59. letter-spacing:1px;
  60. background:transparent;
  61. color:#ffc;
  62. font-size:2.5em;
  63. }
  64. /*************************************** CONTENT */
  65. #content {
  66. border-top:1px solid #fff; /* REMOVES VERTICAL MARGIN COLLAPSING */
  67. margin:0 5%;
  68. padding:0;
  69. width:auto !important;
  70. width /**/:100%;
  71. clear:both;
  72. }
  73. #content .dataset {
  74. margin:30px 0 0 0;
  75. padding:10px;
  76. border:1px solid #eee;
  77. clear:both;
  78. width:auto !important;
  79. width /**/:100%;
  80. }
  81. #content .dataset h2 {
  82. position:relative;
  83. top:-20px;
  84. left:-20px;
  85. width:350px;
  86. margin:0;
  87. padding:0 0 1px 5px;
  88. border:1px solid #ccc;
  89. background-color:#eee;
  90. color:#066;
  91. font-weight:bold;
  92. font-size:1em;
  93. line-height:1.3em;
  94. }
  95. #content .dataset .leftCol {
  96. float:left;
  97. width:50%;
  98. min-width:50%;
  99. margin:0;
  100. padding:0;
  101. }
  102. #appStatus .dataset .rightCol {
  103. float:right;
  104. width:50%;
  105. }
  106. html>body .clear:after {
  107. content:" ";
  108. display:block;
  109. height:0px;
  110. line-height:0px;
  111. clear:both;
  112. visibility:hidden; /* HIDES THE ELEMENT, BUT STILL TAKES UP SPACE */
  113. }
  114. #content p {
  115. line-height:1.6em;
  116. }
  117. #content ul {
  118. margin:0;
  119. padding:0;
  120. list-style:none;
  121. }
  122. #content ul li {
  123. background:url(../images/bullet_orange.gif) 0px 2px no-repeat scroll;
  124. padding-left:20px;
  125. margin-top:.5em;
  126. }
  127. #content h2 {
  128. margin:0;
  129. padding:0;
  130. font-size:1.8em;
  131. }
  132. #content h3 {
  133. margin:0;
  134. padding:0;
  135. font-size:1.5em;
  136. color:#333;
  137. }
  138. #content p.top {
  139. text-align:right;
  140. font:bold 1em Verdana,Helvetica,sans-serif;
  141. }
  142. /*************************************** FOOTER */
  143. #footer {
  144. margin:2em 5% 10px 5%;
  145. padding:0;
  146. clear:both;
  147. }
  148. #footer hr {
  149. margin:0;
  150. padding:0;
  151. height:1px;
  152. background:#ccc;
  153. color:#ccc;
  154. border:0;
  155. }
  156. #footer p {
  157. margin:0;
  158. padding:0;
  159. font-size:1em;
  160. line-height:1.2em;
  161. color:#999;
  162. }
  163. #footer p#copyright {margin-top:1em;}
  164. /*************************************** LINK STYLES */
  165. #content a:hover, #content a:focus, #content ul li a:hover, #content ul li a:focus,
  166. #menu ul li a:hover, #menu ul li a:focus,
  167. #footer a:hover, #footer a:focus {
  168. background:transparent;
  169. color:#b00;
  170. text-decoration:underline;
  171. }
  172. /*************************************** TABLE FORMATTING */
  173. table {
  174. border-right:solid 1px #999;
  175. border-bottom:solid 1px #999;
  176. background-color:#fff;
  177. font-size:1em;
  178. }
  179. th {
  180. border-left:solid 1px #ccc;
  181. border-top:solid 1px #ccc;
  182. background-color:#eee;
  183. color:#066;
  184. font-weight:normal;
  185. font-size:1em;
  186. vertical-align:middle;
  187. text-align:left;
  188. padding:0 0 0 2px;
  189. }
  190. td {
  191. border-left:solid 1px #ccc;
  192. border-top:solid 1px #ccc;
  193. font-size:1em;
  194. padding:0 0 0 2px;
  195. }
  196. /*************************************** FORMS */
  197. form {display:inline;}
  198. input:focus, textarea:focus, select:focus {background:#fc3 !important;}
  199. input.numeric {text-align:right;}
  200. /*************************************** BUTTON STYLES */
  201. #content a.button, #content a.button:link, #content a.button:hover, #content a.button:active, #content .button {
  202. text-decoration:none;
  203. background-color:#d0d0d0;
  204. border:1px outset #d0d0d0;
  205. color: #000;
  206. padding:1px 1em;
  207. font-size:1.2em;
  208. line-height:1.2em;
  209. }
  210. /*************************************** HELP */
  211. #help {
  212. background-color:#ffc;
  213. border:1px solid #ccc;
  214. margin:0 0 15px 0;
  215. padding:0 0 10px 0;
  216. }
  217. #help h4 {
  218. margin:0 0 10px 0;
  219. border-bottom:1px solid #ccc;
  220. background-color:#fc3;
  221. color:#b00;
  222. font-size:1em;
  223. font-weight:bold;
  224. line-height:19px;
  225. padding:0 0 0 3px;
  226. }
  227. #help p {
  228. margin:10px;
  229. padding:0;
  230. }
  231. /* #help #closeHelp {display:none;} */
  232. #help h4 a, #help h4 a:visited {
  233. float:right;
  234. margin:0;
  235. padding:0 5px 0 20px;
  236. text-decoration:none !important;
  237. color:#ffc !important;
  238. font-weight:normal;
  239. line-height:19px;
  240. background:#b00 url(../images/close.gif) 5px 5px no-repeat scroll;
  241. }
  242. #help h4 a:hover, #help h4 a:focus {background:#c33 url(../images/close.gif) 5px 5px no-repeat scroll !important;}
  243. fieldset {
  244. border-top:solid 1px #ccc;
  245. border-bottom:0;
  246. border-right:0;
  247. border-left:0;
  248. margin:0;
  249. padding:0;
  250. padding-bottom: 1.5em;
  251. }
  252. form{
  253. display: inline;
  254. }
  255. .accesskey {text-decoration:underline;}
  256. fieldset div {padding-top:10px;}
  257. legend {color:#066;}
  258. input, select,textarea {
  259. font-family:monospace;
  260. font-size:11px;
  261. margin:0;
  262. padding:0;
  263. }
  264. #content .button {
  265. padding:3px 0px;
  266. font-size:11px;
  267. width:11em;
  268. cursor:pointer;
  269. }
  270. label {
  271. margin:0 5px 0 0;
  272. font-weight:bold;
  273. cursor:pointer;
  274. }
  275. .required {background:#ffc;}
  276. .important {color:#b00;font-family:monospace;font-weight:bold;font-size:1.2em;}
  277. .evenrow {background-color:#eee;}
  278. table .appHeadingRow th {
  279. border-top:5px solid #ccc;
  280. background-color:#666;
  281. color:#fff;
  282. text-align:left;
  283. padding:0 0 0 2px;
  284. }
  285. #content .button#add {background:#d0d0d0 url(../images/arrowd.gif) right center no-repeat scroll;}
  286. #content .button#update {background:#d0d0d0 url(../images/update.gif) right center no-repeat scroll;margin-top:10px;}