You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.css 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. body {
  2. background: white;
  3. font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  4. font-size: small;
  5. color: black;
  6. margin: 0;
  7. }
  8. #banner {
  9. position: relative;
  10. height: 58px;
  11. margin: 0 0 1em 0;
  12. padding: 10px 20px;
  13. background: url('images/banner_gradient.gif') top left repeat-x #d8edfd;
  14. overflow: hidden;
  15. }
  16. #banner .banner-bg {
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. width: 630px;
  21. height: 78px;
  22. background: url('images/banner_schraffur.gif') top right no-repeat;
  23. z-index: 0;
  24. }
  25. #banner .banner-logo {
  26. position: absolute;
  27. top: 10px;
  28. left: 20px;
  29. z-index: 4;
  30. }
  31. #banner .banner-logo a {
  32. border: 0;
  33. }
  34. #topnav {
  35. position: absolute;
  36. top: 3.6em;
  37. right: 20px;
  38. }
  39. #topnav a {
  40. color: #666;
  41. }
  42. #content {
  43. margin: 2em 20px;
  44. }
  45. #footer {
  46. margin: 2em 20px 1em 20px;
  47. padding-top: 0.6em;
  48. font-size: smaller;
  49. text-align: center;
  50. border-top: 1px dotted #999;
  51. }
  52. #progress {
  53. margin-bottom: 2em;
  54. border: 1px solid #aaa;
  55. background-color: #f9f9f9;
  56. }
  57. #progress:after {
  58. content: ".";
  59. display: block;
  60. height: 0;
  61. font-size: 0;
  62. clear: both;
  63. visibility: hidden;
  64. }
  65. #progress li {
  66. float: left;
  67. color: #999;
  68. padding: 1em 5em 1em 0.2em;
  69. }
  70. #progress li a {
  71. color: #999;
  72. text-decoration: none;
  73. }
  74. #progress li a:hover {
  75. text-decoration: underline;
  76. }
  77. #progress li.current {
  78. color: #000;
  79. font-weight: bold;
  80. }
  81. #progress li.passed,
  82. #progress li.passed a,
  83. #progress li.current a {
  84. color: #333;
  85. }
  86. fieldset {
  87. margin-bottom: 1.5em;
  88. border: 1px solid #aaa;
  89. background-color: #f9f9f9;
  90. }
  91. fieldset p.hint {
  92. margin-top: 0.5em;
  93. }
  94. legend {
  95. font-size: 1.1em;
  96. font-weight: bold;
  97. }
  98. textarea.configfile {
  99. background-color: #f9f9f9;
  100. font-family: monospace;
  101. font-size: 9pt;
  102. width: 100%;
  103. height: 30em;
  104. }
  105. .propname {
  106. font-family: monospace;
  107. font-size: 9pt;
  108. margin-top: 1em;
  109. margin-bottom: 0.6em;
  110. }
  111. dd div {
  112. margin-top: 0.3em;
  113. }
  114. dd label {
  115. padding-left: 0.5em;
  116. }
  117. th {
  118. text-align: left;
  119. }
  120. ul li {
  121. margin: 0.3em 0 0.4em -1em;
  122. }
  123. ul li ul li {
  124. margin-bottom: 0.2em;
  125. }
  126. h3 {
  127. font-size: 1.1em;
  128. margin-top: 1.5em;
  129. margin-bottom: 0.6em;
  130. }
  131. h4 {
  132. margin-bottom: 0.2em;
  133. }
  134. a.blocktoggle {
  135. color: #666;
  136. text-decoration: none;
  137. }
  138. a.addlink {
  139. color: #999;
  140. font-size: 0.9em;
  141. padding: 1px 0 1px 20px;
  142. background: url('images/add.png') top left no-repeat;
  143. text-decoration: none;
  144. }
  145. a.removelink {
  146. color: #999;
  147. font-size: 0.9em;
  148. padding: 1px 0 1px 24px;
  149. background: url('images/delete.png') 4px 0 no-repeat;
  150. text-decoration: none;
  151. }
  152. .hint {
  153. color: #666;
  154. font-size: 0.95em;
  155. }
  156. .success {
  157. color: #006400;
  158. font-weight: bold !important;
  159. }
  160. .fail {
  161. color: #ff0000 !important;
  162. font-weight: bold !important;
  163. }
  164. .na {
  165. color: #f60;
  166. font-weight: bold;
  167. }
  168. .indent {
  169. padding-left: 0.8em;
  170. }
  171. .notice {
  172. padding: 1em;
  173. background-color: #f7fdcb;
  174. border: 2px solid #c2d071;
  175. }
  176. .suggestion {
  177. padding: 0.6em;
  178. background-color: #ebebeb;
  179. border: 1px solid #999;
  180. }
  181. p.warning,
  182. div.warning {
  183. padding: 1em;
  184. background-color: #ef9398;
  185. border: 2px solid #dc5757;
  186. }
  187. h3.warning {
  188. color: #c00;
  189. background: url('images/error.png') top left no-repeat;
  190. padding-left: 24px;
  191. }
  192. .userconf {
  193. color: #00c;
  194. font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  195. }