style.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. table
  2. {
  3. border-spacing: 0px;
  4. }
  5. table.full
  6. {
  7. width: 100%;
  8. table-layout: fixed;
  9. }
  10. tr.header th
  11. {
  12. border-bottom: 1px solid;
  13. background-color: #ffb;
  14. padding-left: 10px;
  15. padding-right: 20px;
  16. text-align: left;
  17. }
  18. tr.d0 td
  19. {
  20. background-color: #EEE;
  21. color: black;
  22. padding-left: 10px;
  23. padding-right: 20px;
  24. min-width: 200px;
  25. }
  26. tr.d1 td
  27. {
  28. background-color: #bcf;
  29. color: black;
  30. padding-left: 10px;
  31. padding-right: 20px;
  32. min-width: 200px;
  33. }
  34. tr.gotcha1 td
  35. {
  36. background-color: #fcb;
  37. color: black;
  38. padding-left: 10px;
  39. padding-right: 20px;
  40. min-width: 200px;
  41. }
  42. tr.gotcha2 td
  43. {
  44. background-color: #fed;
  45. color: black;
  46. padding-left: 10px;
  47. padding-right: 20px;
  48. min-width: 200px;
  49. }
  50. /* Don't color pre tag like a box when it shows up in table */
  51. tr pre
  52. {
  53. background-color: inherit;
  54. border: 1px dashed #888;
  55. overflow: auto;
  56. padding: none;
  57. }
  58. .note:before
  59. {
  60. font-style: normal;
  61. content: "Note: ";
  62. }
  63. .note
  64. {
  65. background-color: #ddd;
  66. border: 1px solid #bbb;
  67. margin-top: 2px;
  68. margin-bottom: 2px;
  69. font-style: italic;
  70. padding-left: 4px;
  71. padding-right: 4px;
  72. padding-top: 2px;
  73. padding-bottom: 2px;
  74. }
  75. span.highlight
  76. {
  77. background-color: #4F5;
  78. }
  79. a
  80. {
  81. text-decoration:none;
  82. border:none;
  83. outline:none;
  84. color:#0645AD;
  85. }
  86. a:hover
  87. {
  88. color:#0645AD;
  89. text-decoration: underline;
  90. }
  91. a.missing
  92. {
  93. color:#F32;
  94. }
  95. a:visited
  96. {
  97. color:#0b0080;
  98. }
  99. span.todo:before
  100. {
  101. font-style: normal;
  102. content: "TODO: ";
  103. }
  104. span.todo
  105. {
  106. color: #F54;
  107. font-style: italic;
  108. }
  109. pre
  110. {
  111. background-color: #c3e0f0;
  112. overflow: auto;
  113. padding-left: 8px;
  114. padding-right: 8px;
  115. padding-top: 4px;
  116. padding-bottom: 4px;
  117. border: 1px solid #999;
  118. }
  119. img.center
  120. {
  121. display: block;
  122. margin-left: auto;
  123. margin-right: auto;
  124. }
  125. body, html
  126. {
  127. margin: 0px;
  128. padding: 0px;
  129. background-color: #bbb;
  130. font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; font-weight:300; font-stretch:normal;
  131. height: 100%;
  132. }
  133. .article_outer
  134. {
  135. padding: 0px;
  136. margin:0px auto;
  137. /* 600px = 2*300px wider that article_inner*/
  138. width: 1415px;
  139. }
  140. .article_inner
  141. {
  142. padding: 20px;
  143. position:relative;
  144. font-size: 14pt;
  145. background-color: #fff;
  146. margin:0px auto;
  147. border-left: 1px solid #888;
  148. border-right: 1px solid #888;
  149. width: 815px;
  150. text-align: left;
  151. }
  152. #container
  153. {
  154. position:absolute;
  155. top:0px;
  156. bottom: -0px;
  157. left:0px;
  158. right:0px;
  159. overflow:auto;
  160. }
  161. #fixed_sidebar
  162. {
  163. margin: 0px;
  164. position:absolute;
  165. padding: 5px 10px;
  166. top:10px;
  167. left:0px;
  168. right:0px;
  169. background-color: #fff;
  170. overflow:hidden;
  171. width: 250px;
  172. z-index:100;
  173. border-right: 1px solid #888;
  174. border-top: 1px solid #888;
  175. border-bottom: 1px solid #888;
  176. }
  177. ul
  178. {
  179. margin:0px;
  180. padding: 0px 20px;
  181. /*list-style-type:none;*/
  182. }
  183. li { font-size: 100% }
  184. li li { font-size: 90% }
  185. li li li { font-size: 80% }
  186. li li li li { font-size: 70% }
  187. li li li li li { font-size: 60%}