styles.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. a.minus {
  2. display: block;
  3. position: relative;
  4. top: 0px;
  5. left: 0px;
  6. background-image: url(minus.png);
  7. width: 19px;
  8. height: 20px;
  9. background-position: 0px 0px;
  10. margin: 3px 0px 0px 0px;
  11. }
  12. a.minus:hover {
  13. background-position: 0px -21px;
  14. }
  15. a.minus:active {
  16. background-position: 0px -42px;
  17. }
  18. a.plus {
  19. display: block;
  20. position: relative;
  21. top: 0px;
  22. left: 0px;
  23. background-image: url(plus.png);
  24. width: 19px;
  25. height: 20px;
  26. background-position: 0px 0px;
  27. margin: 0px;
  28. }
  29. a.plus:hover {
  30. background-position: 0px -21px;
  31. }
  32. a.plus:active {
  33. background-position: 0px -42px;
  34. }
  35. body {
  36. background-color: #fff;
  37. margin: 18px 15px 15px 15px;
  38. padding: 0px;
  39. border: 0px;
  40. font-family: Tohoma Verdana sans-serif
  41. font-size: 10pt;
  42. }
  43. div.formLabel {
  44. float: left;
  45. font-weight: bold;
  46. font-family: Tohoma Verdana sans-serif;
  47. font-size: 10pt;
  48. text-align: left;
  49. padding: 4px 8px 2px 2px;
  50. }
  51. div.section {
  52. margin-top: 4px;
  53. margin-bottom: 4px;
  54. margin-left: 2px;
  55. }
  56. div.subsection {
  57. margin-left: 15px;
  58. font-size: 11px;
  59. margin-bottom: 2px;
  60. }
  61. div.section-selected {
  62. font-weight: bold;
  63. margin-bottom: 2px;
  64. margin-left: 2px;
  65. }
  66. dd {
  67. font-size: 0.8em;
  68. margin-bottom: 1em;
  69. }
  70. dl {
  71. margin-left: 20px;
  72. }
  73. dt {
  74. font-size: 0.8em;
  75. font-weight: bold;
  76. margin-bottom: 0.5em;
  77. color: #666;
  78. }
  79. h1 {
  80. color: #2A8FF3;
  81. font-size: 14pt;
  82. font-weight: bold;
  83. border-bottom: 1px solid #ccc;
  84. margin-bottom: 0.5em;
  85. }
  86. h2 {
  87. color: #666;
  88. font-size: 1em;
  89. border-bottom: 1px solid #ccc;
  90. margin-bottom: 0.5em;
  91. margin-top: 3em;
  92. }
  93. hr.sep {
  94. border-style: dotted;
  95. border-width: 0px 0px 1px 0px;
  96. color: #ccc;
  97. width: 100%;
  98. margin: 12pt 0px 12pt 0px;
  99. padding: 0px;
  100. }
  101. img {
  102. border: 0px;
  103. }
  104. input[type=text], input[type=password], input[type=file], input[type=checkbox], select {
  105. background: #EEEEEE;
  106. border: 1px solid #666666;
  107. color: #000066;
  108. font-family: Tahoma Verdana sans-serif;
  109. font-size: 10pt;
  110. margin-right: 4px;
  111. text-decoration: none;
  112. }
  113. input[type=text], input[type=password] {
  114. width: 15em;
  115. }
  116. input.smallnum {
  117. width: 4em;
  118. }
  119. input.vsmallnum {
  120. width: 2em;
  121. }
  122. span.alt {
  123. display: none;
  124. }
  125. table.form {
  126. border-collapse: collapse;
  127. border-spacing: 0px;
  128. border: none;
  129. }
  130. table.form td {
  131. border: none;
  132. padding: 2px 2px 4px 2px;
  133. vertical-align: top;
  134. }
  135. table.form th {
  136. background-color: inherit;
  137. border: none;
  138. padding: 4px 8px 2px 2px;
  139. }
  140. table.form td + th {
  141. padding-left: 30px;
  142. }
  143. textarea {
  144. background: #eee;
  145. border: 1px solid #666;
  146. color: #006;
  147. font-family: Tahoma Verdana sans-serif;
  148. font-size: 10pt;
  149. padding-left: 2px;
  150. text-decoration: none;
  151. width: 15em;
  152. height: 5em;
  153. }
  154. input.excerpt, textarea.excerpt {
  155. width: 25em;
  156. }
  157. td {
  158. font-family: Tohoma Verdana sans-serif;
  159. font-size: 10pt;
  160. text-align: left;
  161. }
  162. th {
  163. font-family: Tohoma Verdana sans-serif;
  164. font-size: 10pt;
  165. text-align: left;
  166. }
  167. tr {
  168. padding-bottom: 20px;
  169. vertical-align: top;
  170. }