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