d9ec173d8ced3b5f635c6213ceb53e35eeb32305
[project/luci.git] / themes / fledermaus / htdocs / luci-static / fledermaus / cascade.css
1 * {
2         margin: 0;
3         padding: 0;
4 }
5
6 body {
7         background-color: #e5e6ec;
8         color: #ffffff;
9         font-family: Verdana, Arial, sans-serif;
10         font-size: 100%;
11         line-height: 100%;
12 }
13
14 code {
15         font-family: monospace;
16         white-space: pre;
17 }
18
19 div#content ul {
20         margin-left: 2em;
21 }
22
23 .warning {
24         color: red !important;
25         font-weight: bold;
26 }
27
28 .clear {
29         clear: both;
30         height: 1px;
31 }
32
33 .hidden {
34         display: none;
35 }
36
37 .error {
38         color: #ff0000;
39 }
40
41 #header {
42         min-height: 98px;
43         background-image: url(logo.png);
44         background-repeat: no-repeat;
45         background-position: left center;
46         background-color: #000000;
47         text-align: center;
48         border-bottom: 1px solid #dc0067;
49 }
50
51 #header2 {
52         min-height: 98px;
53         background-image: url(fledermaus.png);
54         background-repeat: no-repeat;
55         background-position: right center;
56 }
57
58 #header3 {
59         font-size: 2.6em;
60         font-family: serif;
61         color: #FFCB05;
62         letter-spacing: 0.35em;
63         font-weight: bold;
64         line-height: 1.4em;
65 }
66
67 #header4 {
68         font-size: 1.25em;
69         line-height: 1.2em;
70         letter-spacing: 0.2em;
71         color: white;
72 }
73
74 .pathbar {
75         display: none;
76 }
77
78 .menubar {
79         width: 100%;
80         min-height: 1.8em;
81         background: #000000;
82         color: #ffffff;
83 }
84
85 .mainmenu {
86         float: left;
87         width: auto;
88         min-height: 1.8em;
89         background: #000000;
90         color: #ffffff;
91 }
92
93 .mainmenu div {
94         float: left;
95 }
96
97 .mainmenu li {
98         white-space: nowrap;
99 }
100
101 .mainmenu div ul {
102         display: none;
103         position: absolute;
104         background: #000000;
105         color: #ffffff;
106         border-width: 0 1px 1px 1px;
107         border-style: solid;
108         border-color: #444444;
109         list-style-type: none;
110 }
111
112 .mainmenu ul li:hover > ul,
113 .mainmenu div:hover > ul {
114         display: block;
115 }
116
117 .mainmenu ul li > ul {
118         left: 100%;
119         margin-top: -1.8em;
120         border-width: 1px;
121 }
122
123 .modemenu a,
124 .mainmenu a {
125         display: block;
126         padding: 0.5em;
127         color: #ffffff;
128         text-decoration: none;
129         font-size: 80%;
130 }
131
132 .mainmenu .active a,
133 .modemenu .active a {
134         color: #ffff00;
135         font-weight: bold;
136 }
137
138 .mainmenu li:hover > span > a,
139 .mainmenu div:hover > a {
140         font-weight: bold;
141 }
142
143 .modemenu a:hover,
144 .modemenu a:focus,
145 .mainmenu a:hover,
146 .mainmenu a:focus {
147         color: #ffff00;
148         font-weight: bold;
149 }
150
151 .mainmenu div.preactive > a {
152         color: #ffff00;
153         font-weight: bold;
154 }
155
156 .modemenu ul {
157         width: auto;
158         background: #000000;
159         color: #ffffff;
160         list-style-type: none;
161 }
162
163 .modemenu li {
164         float: right;
165 }
166
167 #content {
168         clear: both;
169         width: 90%;
170         margin: 0 auto;
171         padding: 0.5em;
172         background: #f8f9fe;
173         color: #000000;
174         font-size: 80%;
175 }
176
177 #content h1 {
178         margin: 0.25em 0 0.5em 0;
179         font-size: 150%;
180         font-weight: normal;
181 }
182
183 #content h2 {
184         margin: 0.5em 0;
185         font-size: 120%;
186         font-weight: normal;
187         text-decoration: underline;
188 }
189
190 #content p {
191         margin-bottom: 1em;
192 }
193
194 .cbi-section {
195         margin-bottom: 0.5em;
196         padding: 0.5em 1em;
197         border: 1px dotted #555555;
198         background-color: #f2f3f9;
199 }
200
201 .cbi-section legend {
202         font-size: 110%;
203         font-weight: bold;
204         height: 1em;
205         padding: 0 0.25em;
206         color: #555555;
207 }
208
209 .cbi-section h2 {
210         margin: 0em 0 0.5em -0.5em !important;
211 }
212
213 .cbi-section h3 {
214         height: 1.5em;
215         font-size: 90%;
216         color: #555555;
217 }
218
219 .cbi-section-descr {
220         margin-bottom: 0.5em;
221         font-size: 95%;
222 }
223
224 input[type=submit],
225 input[type=reset],
226 label {
227         cursor: pointer;
228 }
229
230 select,
231 input,
232 textarea {
233         background: #eeeeee;
234         color: #000000;
235         border: 1px solid #000000;
236 }
237
238 input:focus,
239 textarea:focus {
240         background: #f2f3f9;
241 }
242
243 select,
244 input[type=text],
245 input[type=password] {
246         width: 20em;
247 }
248
249 td select,
250 td input[type=text],
251 td input[type=password] {
252         width: 99%;
253 }
254
255 textarea {
256         margin-left: -1px;
257         margin-bottom: 0.5em;
258 }
259
260 form > div > input[type=submit],
261 form > div > input[type=reset] {
262         float: right;
263         margin-left: 0.5em;
264 }
265
266 table.smalltext {
267         background: #f5f5f5;
268         border-top: 1px solid #666666;
269         border-right: 1px solid #666666;
270         border-bottom: 1px solid #666666;
271         font-size: 90%;
272         width: 80%;
273         margin-left: auto;
274         margin-right: auto;
275         border-collapse: collapse;
276 }
277
278 table.smalltext tr:hover td {
279         background-color: #bbddee;
280 }
281
282 table.smalltext tr th {
283         padding: 0 0.25em;
284         border-left: 1px solid #666666;
285         text-align: left;
286 }
287
288 table.smalltext tr td {
289         padding: 0 0.25em;
290         border-top: 1px solid #666666;
291         border-left: 1px solid #666666;
292 }
293
294 div.cbi-value {
295         clear: left;
296         padding: 0.25em;
297         border-bottom: 1px dotted #bbbbbb;
298 }
299
300 div.cbi-value:hover {
301         background: #f8f8f8;
302 }
303
304 div.cbi-value:last-child {
305         border: none;
306 }
307
308 .cbi-value-title {
309         float: left;
310         width: 40%;
311         margin: 0.25em 0;
312 }
313
314 div.cbi-value-field {
315         width: 58%;
316         margin: 0.25em 0 0.25em 40%;
317 }
318
319 div.cbi-value-description {
320         font-size: 90%;
321 }
322
323 div.cbi-value-field > div.cbi-value-description {
324         display: none;
325 }
326
327 div.cbi-value:hover div.cbi-value-field > div.cbi-value-description {
328         display: block;
329 }
330
331 div.cbi-section-create {
332         clear: left;
333 }
334
335 div.cbi-map-descr {
336         margin-bottom: 1em;
337 }
338
339 div.cbi-optionals {
340         margin: 0.5em 0;
341         padding: 0 0.25em;
342 }
343
344 div.cbi-section-remove {
345         float: right;
346 }
347
348 div.cbi-section-remove input {
349         border-color: #bbbbbb;
350         border-bottom: none;
351 }
352
353 .cbi-section-node {
354         clear: both;
355         border: 1px dotted #bbbbbb;
356         padding-bottom: 0;
357 }
358
359 table.cbi-section-table {
360         width: 100%;
361         font-size: 95%;
362 }
363
364 table.cbi-section-table th,
365 table.cbi-section-table td {
366         text-align: center;
367 }
368
369 tr.cbi-section-table-descr th {
370         font-weight: normal;
371         font-size: 90%;
372 }
373
374 td.cbi-section-table-optionals {
375         text-align: left !important;
376         padding-top: 1em;
377 }
378
379 .right {
380         text-align: right;
381 }
382
383 .luci {
384         position: fixed;
385         bottom: 0;
386         left: 0;
387         text-align: right;
388 }
389
390 .luci a {
391         color: #666666;
392         text-decoration: none;
393         font-size: 70%;
394 }
395
396 .inline {
397         display: inline;
398 }
399
400 #memorybar {
401         width:200px;
402         height:8px;
403         border:1px solid #bbb;
404         background-color:red
405 }
406
407 #memfree, #membuffers, #memcached {
408         float:right;
409         border:1px solid #bbb;
410         height:6px;
411 }
412
413 #memfree {
414         background-color:green;
415 }
416
417 #membuffers {
418         background-color:yellow;
419 }
420
421 #memcached {
422         background-color:orange;
423 }
424
425
426 /* obligatory IE6 Voodoo Code */
427 * html body {
428         padding-left: 50% !important;
429 }
430
431 * html div#header {
432         margin-left: -100% !important;
433 }
434
435 * html div.menubar {
436         margin-left: -100% !important;
437         width: 200% !important;
438 }
439
440 * html div#content {
441         margin-left: -80% !important;
442         width: 160% !important;
443 }
444
445 * html div.mainmenu div.hover ul,
446 * html div.mainmenu div li.hover ul,
447 * html div.mainmenu div li li.hover ul,
448 * html div.mainmenu div li li li.hover ul,
449 * html div.mainmenu div li li li li.hover ul {
450         display: block !important;
451         margin-left: 3em;
452 }
453
454 * html div.mainmenu div.hover ul {
455         margin-left: 0;
456 }
457
458 * html div.mainmenu .hover ul ul,
459 * html div.mainmenu .hover ul ul ul,
460 * html div.mainmenu .hover ul ul ul ul,
461 * html div.mainmenu .hover ul ul ul ul ul {
462         display: none !important;
463 }
464
465 * html div.mainmenu li {
466         height: 1em !important;
467         width: 10em !important;
468 }
469
470 * html .mainmenu {
471         height: 1.8em;
472 }
473
474 * html div.cbi-value-description {
475         margin-left: 40%;
476 }