0ab856fc31ad2e546b44c2557f12aabfb4479471
[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 }
276
277 table.smalltext tr:hover td {
278         background-color: #bbddee;
279 }
280
281 table.smalltext tr th {
282         padding: 0 0.25em;
283         border-left: 1px solid #666666;
284         text-align: left;
285 }
286
287 table.smalltext tr td {
288         padding: 0 0.25em;
289         border-top: 1px solid #666666;
290         border-left: 1px solid #666666;
291 }
292
293 div.cbi-value {
294         clear: left;
295         padding: 0.25em;
296         border-bottom: 1px dotted #bbbbbb;
297 }
298
299 div.cbi-value:hover {
300         background: #f8f8f8;
301 }
302
303 div.cbi-value:last-child {
304         border: none;
305 }
306
307 .cbi-value-title {
308         float: left;
309         width: 40%;
310         margin: 0.25em 0;
311 }
312
313 div.cbi-value-field {
314         width: 58%;
315         margin: 0.25em 0 0.25em 40%;
316 }
317
318 div.cbi-value-description {
319         font-size: 90%;
320 }
321
322 div.cbi-value-field > div.cbi-value-description {
323         display: none;
324 }
325
326 div.cbi-value:hover div.cbi-value-field > div.cbi-value-description {
327         display: block;
328 }
329
330 div.cbi-section-create {
331         clear: left;
332 }
333
334 div.cbi-map-descr {
335         margin-bottom: 1em;
336 }
337
338 div.cbi-optionals {
339         margin: 0.5em 0;
340         padding: 0 0.25em;
341 }
342
343 div.cbi-section-remove {
344         float: right;
345 }
346
347 div.cbi-section-remove input {
348         border-color: #bbbbbb;
349         border-bottom: none;
350 }
351
352 .cbi-section-node {
353         clear: both;
354         border: 1px dotted #bbbbbb;
355         padding-bottom: 0;
356 }
357
358 table.cbi-section-table {
359         width: 100%;
360         font-size: 95%;
361 }
362
363 table.cbi-section-table th,
364 table.cbi-section-table td {
365         text-align: center;
366 }
367
368 tr.cbi-section-table-descr th {
369         font-weight: normal;
370         font-size: 90%;
371 }
372
373 td.cbi-section-table-optionals {
374         text-align: left !important;
375         padding-top: 1em;
376 }
377
378 .right {
379         text-align: right;
380 }
381
382 .luci {
383         position: fixed;
384         bottom: 0;
385         left: 0;
386         text-align: right;
387 }
388
389 .luci a {
390         color: #666666;
391         text-decoration: none;
392         font-size: 70%;
393 }
394
395 .inline {
396         display: inline;
397 }
398
399 #memorybar {
400         width:200px;
401         height:8px;
402         border:1px solid #bbb;
403         background-color:red
404 }
405
406 #memfree, #membuffers, #memcached {
407         float:right;
408         border:1px solid #bbb;
409         height:6px;
410 }
411
412 #memfree {
413         background-color:green;
414 }
415
416 #membuffers {
417         background-color:yellow;
418 }
419
420 #memcached {
421         background-color:orange;
422 }
423
424
425 /* obligatory IE6 Voodoo Code */
426 * html body {
427         padding-left: 50% !important;
428 }
429
430 * html div#header {
431         margin-left: -100% !important;
432 }
433
434 * html div.menubar {
435         margin-left: -100% !important;
436         width: 200% !important;
437 }
438
439 * html div#content {
440         margin-left: -80% !important;
441         width: 160% !important;
442 }
443
444 * html div.mainmenu div.hover ul,
445 * html div.mainmenu div li.hover ul,
446 * html div.mainmenu div li li.hover ul,
447 * html div.mainmenu div li li li.hover ul,
448 * html div.mainmenu div li li li li.hover ul {
449         display: block !important;
450         margin-left: 3em;
451 }
452
453 * html div.mainmenu div.hover ul {
454         margin-left: 0;
455 }
456
457 * html div.mainmenu .hover ul ul,
458 * html div.mainmenu .hover ul ul ul,
459 * html div.mainmenu .hover ul ul ul ul,
460 * html div.mainmenu .hover ul ul ul ul ul {
461         display: none !important;
462 }
463
464 * html div.mainmenu li {
465         height: 1em !important;
466         width: 10em !important;
467 }
468
469 * html .mainmenu {
470         height: 1.8em;
471 }
472
473 * html div.cbi-value-description {
474         margin-left: 40%;
475 }