style.werc140.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /* Default werc style */
  2. body {
  3. color: black;
  4. background-color: white;
  5. font-family: Helvetica, Verdana, Arial, 'Liberation Sans', FreeSans, sans-serif;
  6. font-size: 84%; /* Enables font size scaling in MSIE */
  7. margin: 0;
  8. padding: 0;
  9. }
  10. /* # Header # */
  11. .superHeader {
  12. color: white;
  13. background-color: rgb(100,135,220);
  14. height: 1.6em;
  15. }
  16. .superHeader img { vertical-align: bottom; }
  17. .superHeader a {
  18. color: white;
  19. background-color: transparent;
  20. font-size: 91%;
  21. margin: 0;
  22. padding: 0 0.5ex 0 0.25ex;
  23. }
  24. a { text-decoration: none; }
  25. a:hover { text-decoration: underline; }
  26. .superHeader div {
  27. position: absolute;
  28. top: 0.40ex;
  29. }
  30. .superHeader .left { left: 0.4em; }
  31. .superHeader .right { right: 0.4em; }
  32. .midHeader {
  33. color: rgb(39,78,144);
  34. background-color: rgb(140,170,230);
  35. background-color: #ff6d06;
  36. border: solid 0 black;
  37. border-width: 2px 0;
  38. }
  39. .headerTitle {
  40. color: black;
  41. font-size: 233%;
  42. font-weight: normal;
  43. margin: 0 0 0 4mm;
  44. padding: 0.25ex 0;
  45. }
  46. #headerSubTitle {
  47. font-size: 50%;
  48. font-style: italic;
  49. margin-left: 1em;
  50. }
  51. .headerTitle a { color: black; }
  52. .headerTitle a:hover { text-decoration: none; }
  53. .subHeader {
  54. display: none;
  55. color: white;
  56. background-color: rgb(0,51,153);
  57. margin: 0;
  58. padding: 1ex 1ex 1ex 1.5mm;
  59. }
  60. .subHeader a {
  61. color: white;
  62. background-color: transparent;
  63. font-weight: bold;
  64. margin: 0;
  65. padding: 0 0.75ex 0 0.5ex;
  66. }
  67. .superHeader .highlight, .subHeader .highlight {
  68. color: rgb(253,160,91);
  69. background-color: transparent;
  70. }
  71. /* # Side # */
  72. #side-bar {
  73. width: 16em;
  74. float: left;
  75. clear: left;
  76. border-right: 1px solid #ddd;
  77. }
  78. #side-bar div {
  79. border-bottom: 1px solid #ddd;
  80. }
  81. .sideBarTitle {
  82. font-weight: bold;
  83. margin: 0 0 0.5em 2mm;
  84. padding: 1em 0 0 0;
  85. }
  86. #side-bar ul {
  87. list-style-type: none;
  88. list-style-position: outside;
  89. margin: 0;
  90. padding: 0 0 0.3em 0;
  91. }
  92. li ul {
  93. padding-left: 0.6em !important;
  94. }
  95. #side-bar li {
  96. margin: 0;
  97. padding: 0.1ex 0; /* Circumvents a rendering bug (?) in MSIE 6.0 XXX should move to iehacks.css, this causes an ugly gap */
  98. }
  99. #side-bar a {
  100. color: rgb(0,102,204);
  101. background-color: transparent;
  102. margin: 0;
  103. padding: 0.25em 1ex 0.25em 2mm;
  104. display: block;
  105. text-transform: capitalize;
  106. font-weight: bold!important;
  107. font-size: 102%;
  108. border-left: white solid 0.2em;
  109. }
  110. .thisPage, .thisPage a {
  111. color: black!important;
  112. background-color: white;
  113. padding-left: 5mm;
  114. }
  115. #side-bar a:hover {
  116. color: white;
  117. background-color: rgb(100,135,220);
  118. border-left: black solid 0.2em;
  119. text-decoration: none;
  120. }
  121. .sideBarText {
  122. line-height: 1.5em;
  123. margin: 0 0 1em 0;
  124. padding: 0 1.5ex 0 2.5mm;
  125. display: block;
  126. }
  127. #side-bar .sideBarText a {
  128. margin: 0;
  129. padding: 0;
  130. display: inline;
  131. }
  132. #side-bar .sideBarText a:hover {
  133. color: rgb(0,102,204);
  134. background-color: transparent;
  135. text-decoration: none;
  136. }
  137. /* # Main Copy # */
  138. #main-copy {
  139. max-width: 70em;
  140. color: black;
  141. background-color: transparent;
  142. text-align: justify;
  143. line-height: 1.5em;
  144. margin: 0em 0 0 16em;
  145. padding: 0.5mm 5mm 5mm 5mm;
  146. border-left: 1px solid #ddd;
  147. }
  148. #bodyText {
  149. margin: 0 0 0 15.5em;
  150. padding: 2mm 5mm 2mm 5mm;
  151. }
  152. #main-copy p {
  153. margin: 1em 1ex 1em 1ex !important; /* Need !important so troff-generated pages don't look totally squezed */
  154. padding: 0;
  155. }
  156. #main-copy a {
  157. color: rgb(0,102,204);
  158. background-color: transparent;
  159. }
  160. #main-copy a:hover {
  161. color: rgb(100,135,220);
  162. }
  163. #main-copy h1, #main-copy h2 {
  164. color: rgb(0,102,204);
  165. background-color: transparent;
  166. font-size: 145.5%;
  167. font-weight: bold;
  168. margin: 2em 0 0 0;
  169. padding: 0.5ex 0 0.5ex 0.6ex;
  170. border-bottom: 2px solid rgb(0,102,204);
  171. }
  172. #main-copy h2 {
  173. font-size: 115.5%;
  174. border-bottom: 1px solid rgb(0,102,204);
  175. }
  176. #main-copy .topOfPage {
  177. color: rgb(0,102,204);
  178. background-color: transparent;
  179. font-size: 91%;
  180. font-weight: bold;
  181. text-decoration: none;
  182. margin: 3ex 1ex 0 0;
  183. padding: 0;
  184. float: right;
  185. }
  186. dl {
  187. margin: 1em 1ex 2em 1ex;
  188. padding: 0;
  189. }
  190. dt {
  191. font-weight: bold;
  192. margin: 0 0 0 0;
  193. padding: 0;
  194. }
  195. dd {
  196. margin: 0 0 2em 2em;
  197. padding: 0;
  198. }
  199. /* # Footer # */
  200. #footer {
  201. color: white;
  202. background-color: rgb(100,135,220);
  203. padding: 1em;
  204. clear: both;
  205. }
  206. #footer .left {
  207. text-align: left;
  208. line-height: 1.55em;
  209. float: left;
  210. clear: left;
  211. }
  212. #footer .right {
  213. text-align: right;
  214. line-height: 1.45em;
  215. }
  216. #footer a {
  217. color: white;
  218. background-color: transparent;
  219. }
  220. /* GENERAL */
  221. table {
  222. border: solid 1px black;
  223. }
  224. th {
  225. background-color: #abc;
  226. border: solid 1px black;
  227. text-align: center;
  228. }
  229. td {
  230. background-color: #def;
  231. border: solid 1px black;
  232. }
  233. hr {
  234. border-width: 0px 0px 0.1em 0px;
  235. border-color: black;
  236. }
  237. acronym, .titleTip {
  238. border-bottom: 1px solid #ddd;
  239. cursor: help;
  240. margin: 0;
  241. padding: 0 0 0.4px 0;
  242. }
  243. pre {
  244. margin-left: 2em;
  245. font-size: 1.2em;
  246. }
  247. blockquote {
  248. border-left: 1px solid blue;
  249. font-style: italic;
  250. }
  251. .smallCaps {
  252. font-size: 110%;
  253. font-variant: small-caps;
  254. }
  255. .doNotDisplay { display: none; }
  256. .notify_errors,
  257. .notify_notes,
  258. .notify_success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
  259. .notify_errors { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
  260. .notify_notes { background: #FFF6BF; color: #514721; border-color: #FFD324; }
  261. .notify_success { background: #E6EFC2; color: #264409; border-color: #C6D880; }
  262. .notify_errors a { color: #8a1f11; }
  263. .notify_notes a { color: #514721; }
  264. .notify_success a { color: #264409; }
  265. /* # Page/Handler specific # */
  266. h1.dir-list-head, ul.dir-list {
  267. text-transform: capitalize;
  268. font-weight: bold;
  269. }
  270. ul.sitemap-list a {
  271. text-transform: capitalize;
  272. }