treestyles.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. body {
  2. background-color: #eeeeee;
  3. color: #000000;
  4. font-family:sans-serif;
  5. }
  6. :link { color: #0000ff; text-decoration:none;}
  7. :visited { color: #6666ff; text-decoration:none; }
  8. a:active { color: #0000ff; text-decoration:none;}
  9. a:hover {color: #0000ff; text-decoration:underline; }
  10. div.basetext {
  11. background-color:#ffffff;
  12. margin-top:11px;
  13. margin-bottom:11px;
  14. margin-left:1%;
  15. margin-right:1%;
  16. padding-top:11px;
  17. padding-left:11px;
  18. padding-right:11px;
  19. padding-bottom:11px;
  20. text-align:left;
  21. font-weight:normal;
  22. border-width:thin;
  23. border-style:solid;
  24. border-color:#dddddd;
  25. }
  26. div.basetop {
  27. position: fixed;
  28. width:auto;
  29. height:auto;
  30. right:0em;
  31. top:0em;
  32. left:auto;
  33. top:0;
  34. background-color:#ffffff;
  35. margin-top:0;
  36. margin-bottom:0;
  37. margin-left:1%;
  38. margin-right:1%;
  39. padding-top:2px;
  40. padding-left:11px;
  41. padding-right:11px;
  42. padding-bottom:2px;
  43. text-align:left;
  44. font-weight:normal;
  45. text-align:right;
  46. border-width:thin;
  47. border-style:solid;
  48. border-color:#dddddd;
  49. }
  50. h1 {
  51. text-align:center;
  52. }
  53. span.h2 {
  54. font-family:sans-serif;
  55. font-weight:bold;
  56. }
  57. div.year {
  58. margin-right:2%;
  59. background-color:#eeeeee;
  60. }
  61. div.form {
  62. }
  63. span.cpt {
  64. color:#005500;
  65. font-weight:bold;
  66. }
  67. span.cm {
  68. color:#666666;
  69. }
  70. .fl {
  71. color:#0000FF;
  72. font-style:italic;
  73. }
  74. ul {
  75. margin-top:1px;
  76. margin-bottom:1px;
  77. margin-left:0px;
  78. padding-left:3%;
  79. }
  80. li {
  81. list-style:outside;
  82. margin-top:10px;
  83. margin-bottom:10px;
  84. }
  85. ul li {
  86. list-style:square;
  87. font-family:sans-serif;
  88. font-weight:normal;
  89. }
  90. li.basic {
  91. list-style:square;
  92. list-style-image:none;
  93. margin-top:2px;
  94. margin-bottom:2px;
  95. }
  96. span.links {
  97. }
  98. .sub { display: none; }
  99. .subexp {display: block; }
  100. .sub { display: none; }
  101. .subexp {display: block; }
  102. li.exp {
  103. list-style-image:url("plus.png");
  104. margin-top:10px;
  105. margin-bottom:10px;
  106. cursor:pointer;
  107. }
  108. li.col {
  109. list-style-image:url("minus.png");
  110. margin-top:10px;
  111. margin-bottom:10px;
  112. cursor:pointer;
  113. }
  114. li.exp_active {
  115. list-style-image:url("plus.png");
  116. margin-top:10px;
  117. margin-bottom:10px;
  118. background-color:#eeeeff;
  119. cursor:pointer;
  120. }
  121. li.col_active {
  122. list-style-image:url("minus.png");
  123. margin-top:10px;
  124. margin-bottom:10px;
  125. background-color:#eeeeff;
  126. cursor:pointer; /* if not included, bullets are not shown right in moz*/
  127. }
  128. li.basic_active {
  129. list-style:square;
  130. list-style-image:none;
  131. background-color:#eeeeff;
  132. margin-top:2px;
  133. margin-bottom:2px;
  134. }
  135. /* the 'boxed' and 'attributes' styles are used to display notes and attributes
  136. */
  137. .boxed,.nodecontent {display:inline;}
  138. .boxed .note-and-attributes {display:none;}
  139. .boxed:hover .note-and-attributes {
  140. position:fixed; top:2em;right:10px;z-index:3;
  141. display:block;
  142. min-width:33%;
  143. max-width:60%;
  144. max-height:95%;
  145. color:black;
  146. background:#ffffff;
  147. font:normal 16px courier, sans-serif;
  148. border:1px solid black;
  149. padding:10px;
  150. }
  151. .note:before {
  152. content:"NOTE: ";
  153. font-weight:bold;
  154. }
  155. table.attributes {
  156. border-collapse:collapse;
  157. empty-cells:show;
  158. border:thin black solid;
  159. }
  160. table.attributes td,th {
  161. border:thin black solid;
  162. padding-top:2px;
  163. padding-bottom:2px;
  164. padding-left:3px;
  165. padding-right:3px;
  166. }
  167. table.attributes th {
  168. text-align:center;
  169. }
  170. table.attributes caption {
  171. margin-top:1em;
  172. font-style:italic;
  173. text-align:center;
  174. }