298d0770c02e89fd24d54dd0d61e1b011f58e72e
[lhc/web/wiklou.git] / skins / monobook / main.css
1 /*
2 ** MediaWiki 'monobook' style sheet for CSS2-capable browsers.
3 ** Copyright Gabriel Wicke - http://wikidev.net/
4 ** License: GPL (http://www.gnu.org/copyleft/gpl.html)
5 **
6 ** Loosely based on http://www.positioniseverything.net/ordered-floats.html by Big John
7 ** and the Plone 2.0 styles, see http://plone.org/ (Alexander Limi,Joe Geldart & Tom Croucher,
8 ** Michael Zeltner and Geir Bækholt)
9 ** All you guys rock :)
10 */
11
12 /**
13 * Stylesheet for screen/projection. All rules not marked media-specific are
14 * shared with handheld.css and should be updated in tandem. The rules can't
15 * be in the same file because old browsers like IE5 won't obey @media rules.
16 *
17 * Rules that are screen/projection-specific are marked with commented-out
18 * @media rules and indentation.
19 */
20
21 /* @media screen, projection { */
22 #column-content {
23 width: 100%;
24 float: right;
25 margin: 0 0 .6em -12.2em;
26 padding: 0;
27 }
28 #content {
29 margin: 2.8em 0 0 12.2em;
30 padding: 0 1em 1.5em 1em;
31 position: relative;
32 z-index: 2;
33 }
34 #column-one {
35 padding-top: 160px;
36 }
37 /* } */
38 #content {
39 background: white;
40 color: black;
41 border: 1px solid #aaa;
42 border-right: none;
43 line-height: 1.5em;
44 }
45 /* the left column width is specified in class .portlet */
46
47 /* Font size:
48 ** We take advantage of keyword scaling- browsers won't go below 9px
49 ** More at http://www.w3.org/2003/07/30-font-size
50 ** http://style.cleverchimp.com/font_size_intervals/altintervals.html
51 */
52
53 body {
54 font: x-small sans-serif;
55 background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
56 color: black;
57 margin: 0;
58 padding: 0;
59 }
60
61 /* scale back up to a sane default */
62 #globalWrapper {
63 font-size: 127%;
64 width: 100%;
65 margin: 0;
66 padding: 0;
67 }
68 .visualClear {
69 clear: both;
70 }
71
72 /* general styles */
73
74 table {
75 font-size: 100%;
76 color: black;
77 /* we don't want the bottom borders of <h2>s to be visible through
78 floated tables */
79 background-color: white;
80 }
81 a {
82 text-decoration: none;
83 color: #002bb8;
84 background: none;
85 }
86 a:visited {
87 color: #5a3696;
88 }
89 a:active {
90 color: #faa700;
91 }
92 a:hover {
93 text-decoration: underline;
94 }
95 a.stub {
96 color: #772233;
97 }
98 a.new, #p-personal a.new {
99 color: #ba0000;
100 }
101 a.new:visited, #p-personal a.new:visited {
102 color: #a55858;
103 }
104
105 img {
106 border: none;
107 vertical-align: middle;
108 }
109 /* @media screen, projection { */
110 p {
111 margin: .4em 0 .5em 0;
112 line-height: 1.5em;
113 }
114 /* } */
115 p img {
116 margin: 0;
117 }
118
119 hr {
120 height: 1px;
121 color: #aaa;
122 background-color: #aaa;
123 border: 0;
124 margin: .2em 0 .2em 0;
125 }
126
127 h1, h2, h3, h4, h5, h6 {
128 color: black;
129 background: none;
130 font-weight: normal;
131 margin: 0;
132 padding-top: .5em;
133 padding-bottom: .17em;
134 border-bottom: 1px solid #aaa;
135 }
136 h1 { font-size: 188%; }
137 h1 .editsection { font-size: 53%; }
138 h2 { font-size: 150%; }
139 h2 .editsection { font-size: 67%; }
140 h3, h4, h5, h6 {
141 border-bottom: none;
142 font-weight: bold;
143 }
144 h3 { font-size: 132%; }
145 h3 .editsection { font-size: 76%; font-weight: normal; }
146 h4 { font-size: 116%; }
147 h4 .editsection { font-size: 86%; font-weight: normal; }
148 h5 { font-size: 100%; }
149 h5 .editsection { font-weight: normal; }
150 h6 { font-size: 80%; }
151 h6 .editsection { font-size: 125%; font-weight: normal; }
152
153 .editsection {
154 float: right;
155 margin-left: 5px;
156 }
157
158 ul {
159 line-height: 1.5em;
160 list-style-type: square;
161 margin: .3em 0 0 1.5em;
162 padding: 0;
163 list-style-image: url(bullet.gif);
164 }
165 ol {
166 line-height: 1.5em;
167 margin: .3em 0 0 3.2em;
168 padding: 0;
169 list-style-image: none;
170 }
171 li {
172 margin-bottom: .1em;
173 }
174 dt {
175 font-weight: bold;
176 margin-bottom: .1em;
177 }
178 dl {
179 margin-top: .2em;
180 margin-bottom: .5em;
181 }
182 dd {
183 line-height: 1.5em;
184 margin-left: 2em;
185 margin-bottom: .1em;
186 }
187
188 fieldset {
189 border: 1px solid #2f6fab;
190 margin: 1em 0 1em 0;
191 padding: 0 1em 1em;
192 line-height: 1.5em;
193 }
194 legend {
195 padding: .5em;
196 font-size: 95%;
197 }
198 form {
199 border: none;
200 margin: 0;
201 }
202
203 textarea {
204 width: 100%;
205 padding: .1em;
206 }
207
208 input.historysubmit {
209 padding: 0 .3em .3em .3em !important;
210 font-size: 94%;
211 cursor: pointer;
212 height: 1.7em !important;
213 margin-left: 1.6em;
214 }
215 select {
216 vertical-align: top;
217 }
218 abbr, acronym, .explain {
219 border-bottom: 1px dotted black;
220 color: black;
221 background: none;
222 cursor: help;
223 }
224 q {
225 font-family: Times, "Times New Roman", serif;
226 font-style: italic;
227 }
228 /* disabled for now
229 blockquote {
230 font-family: Times, "Times New Roman", serif;
231 font-style: italic;
232 }*/
233 code {
234 background-color: #f9f9f9;
235 }
236 pre {
237 padding: 1em;
238 border: 1px dashed #2f6fab;
239 color: black;
240 background-color: #f9f9f9;
241 line-height: 1.1em;
242 }
243
244 /*
245 ** the main content area
246 */
247
248 /* @media screen, projection { */
249 #siteSub {
250 display: none;
251 }
252 #jump-to-nav {
253 display: none;
254 }
255 /* } */
256
257 #contentSub, #contentSub2 {
258 font-size: 84%;
259 line-height: 1.2em;
260 margin: 0 0 1.4em 1em;
261 color: #7d7d7d;
262 width: auto;
263 }
264 span.subpages {
265 display: block;
266 }
267
268 /* Some space under the headers in the content area */
269 #bodyContent h1, #bodyContent h2 {
270 margin-bottom: .6em;
271 }
272 #bodyContent h3, #bodyContent h4, #bodyContent h5 {
273 margin-bottom: .3em;
274 }
275 .firstHeading {
276 margin-bottom: .1em;
277 }
278
279 /* user notification thing */
280 .usermessage {
281 background-color: #ffce7b;
282 border: 1px solid #ffa500;
283 color: black;
284 font-weight: bold;
285 margin: 2em 0 1em;
286 padding: .5em 1em;
287 vertical-align: middle;
288 }
289 #siteNotice {
290 text-align: center;
291 font-size: 95%;
292 padding: 0 .9em;
293 }
294 #siteNotice p {
295 margin: 0;
296 padding: 0;
297 }
298 .error {
299 color: red;
300 font-size: larger;
301 }
302 .errorbox, .successbox {
303 font-size: larger;
304 border: 2px solid;
305 padding: .5em 1em;
306 float: left;
307 margin-bottom: 2em;
308 color: #000;
309 }
310 .errorbox {
311 border-color: red;
312 background-color: #fff2f2;
313 }
314 .successbox {
315 border-color: green;
316 background-color: #dfd;
317 }
318 .errorbox h2, .successbox h2 {
319 font-size: 1em;
320 font-weight: bold;
321 display: inline;
322 margin: 0 .5em 0 0;
323 border: none;
324 }
325
326 #catlinks {
327 border: 1px solid #aaa;
328 background-color: #f9f9f9;
329 padding: 5px;
330 margin-top: 1em;
331 clear: both;
332 }
333 /* currently unused, intended to be used by a metadata box
334 in the bottom-right corner of the content area */
335 .documentDescription {
336 /* The summary text describing the document */
337 font-weight: bold;
338 display: block;
339 margin: 1em 0;
340 line-height: 1.5em;
341 }
342 .documentByLine {
343 text-align: right;
344 font-size: 90%;
345 clear: both;
346 font-weight: normal;
347 color: #76797c;
348 }
349
350 /* emulate center */
351 .center {
352 width: 100%;
353 text-align: center;
354 }
355 *.center * {
356 margin-left: auto;
357 margin-right: auto;
358 }
359 /* small for tables and similar */
360 .small, .small * {
361 font-size: 94%;
362 }
363 table.small {
364 font-size: 100%;
365 }
366
367 /*
368 ** content styles
369 */
370
371 #toc,
372 .toc,
373 .mw-warning {
374 border: 1px solid #aaa;
375 background-color: #f9f9f9;
376 padding: 5px;
377 font-size: 95%;
378 }
379 #toc h2,
380 .toc h2 {
381 display: inline;
382 border: none;
383 padding: 0;
384 font-size: 100%;
385 font-weight: bold;
386 }
387 #toc #toctitle,
388 .toc #toctitle,
389 #toc .toctitle,
390 .toc .toctitle {
391 text-align: center;
392 }
393 #toc ul,
394 .toc ul {
395 list-style-type: none;
396 list-style-image: none;
397 margin-left: 0;
398 padding-left: 0;
399 text-align: left;
400 }
401 #toc ul ul,
402 .toc ul ul {
403 margin: 0 0 0 2em;
404 }
405 #toc .toctoggle,
406 .toc .toctoggle {
407 font-size: 94%;
408 }
409
410 .mw-warning {
411 margin-left: 50px;
412 margin-right: 50px;
413 text-align: center;
414 }
415
416 /* images */
417 div.floatright, table.floatright {
418 clear: right;
419 float: right;
420 position: relative;
421 margin: 0 0 .5em .5em;
422 border: 0;
423 /*
424 border: .5em solid white;
425 border-width: .5em 0 .8em 1.4em;
426 */
427 }
428 div.floatright p { font-style: italic; }
429 div.floatleft, table.floatleft {
430 float: left;
431 clear: left;
432 position: relative;
433 margin: 0 .5em .5em 0;
434 border: 0;
435 /*
436 margin: .3em .5em .5em 0;
437 border: .5em solid white;
438 border-width: .5em 1.4em .8em 0;
439 */
440 }
441 div.floatleft p { font-style: italic; }
442 /* thumbnails */
443 div.thumb {
444 margin-bottom: .5em;
445 border-style: solid;
446 border-color: white;
447 width: auto;
448 }
449 div.thumbinner {
450 border: 1px solid #ccc;
451 padding: 3px !important;
452 background-color: #f9f9f9;
453 font-size: 94%;
454 text-align: center;
455 overflow: hidden;
456 }
457 html .thumbimage {
458 border: 1px solid #ccc;
459 }
460 html .thumbcaption {
461 border: none;
462 text-align: left;
463 line-height: 1.4em;
464 padding: 3px !important;
465 font-size: 94%;
466 }
467 div.magnify {
468 float: right;
469 border: none !important;
470 background: none !important;
471 }
472 div.magnify a, div.magnify img {
473 display: block;
474 border: none !important;
475 background: none !important;
476 }
477 div.tright {
478 clear: right;
479 float: right;
480 border-width: .5em 0 .8em 1.4em;
481 }
482 div.tleft {
483 float: left;
484 clear: left;
485 margin-right: .5em;
486 border-width: .5em 1.4em .8em 0;
487 }
488 img.thumbborder {
489 border: 1px solid #dddddd;
490 }
491 .hiddenStructure {
492 display: none;
493 }
494
495 /* Have a checkered background on images on the description pages and in galleries
496 to make transparency visible
497
498 #file img, .gallerybox .thumb img {
499 background: url(Checker-16x16.png) repeat;
500 }
501 */
502
503 /*
504 ** classes for special content elements like town boxes
505 ** intended to be referenced directly from the wiki src
506 */
507
508 /*
509 ** User styles
510 */
511 /* table standards */
512 table.rimage {
513 float: right;
514 position: relative;
515 margin-left: 1em;
516 margin-bottom: 1em;
517 text-align: center;
518 }
519 .toccolours {
520 border: 1px solid #aaa;
521 background-color: #f9f9f9;
522 padding: 5px;
523 font-size: 95%;
524 }
525 div.townBox {
526 position: relative;
527 float: right;
528 background: white;
529 margin-left: 1em;
530 border: 1px solid gray;
531 padding: .3em;
532 width: 200px;
533 overflow: hidden;
534 clear: right;
535 }
536 div.townBox dl {
537 padding: 0;
538 margin: 0 0 .3em;
539 font-size: 96%;
540 }
541 div.townBox dl dt {
542 background: none;
543 margin: .4em 0 0;
544 }
545 div.townBox dl dd {
546 margin: .1em 0 0 1.1em;
547 background-color: #f3f3f3;
548 }
549
550 /*
551 ** edit views etc
552 */
553 .special li {
554 line-height: 1.4em;
555 margin: 0;
556 padding: 0;
557 }
558
559 /* Page history styling */
560 /* the auto-generated edit comments */
561 .autocomment {
562 color: gray;
563 }
564 #pagehistory span.user {
565 margin-left: 1.4em;
566 margin-right: .4em;
567 }
568 #pagehistory span.minor {
569 font-weight: bold;
570 }
571 #pagehistory li {
572 border: 1px solid white;
573 }
574 #pagehistory li.selected {
575 background-color: #f9f9f9;
576 border: 1px dashed #aaa;
577 }
578
579 /*
580 ** keep the whitespace in front of the ^=, hides rule from konqueror
581 ** this is css3, the validator doesn't like it when validating as css2
582 */
583 #bodyContent a.external,
584 #bodyContent a[href ^="gopher://"] {
585 background: url(external.png) center right no-repeat;
586 padding-right: 13px;
587 }
588 #bodyContent a[href ^="https://"],
589 .link-https {
590 background: url(lock_icon.gif) center right no-repeat;
591 padding-right: 16px;
592 }
593 #bodyContent a[href ^="mailto:"],
594 .link-mailto {
595 background: url(mail_icon.gif) center right no-repeat;
596 padding-right: 18px;
597 }
598 #bodyContent a[href ^="news://"] {
599 background: url(news_icon.png) center right no-repeat;
600 padding-right: 18px;
601 }
602 #bodyContent a[href ^="ftp://"],
603 .link-ftp {
604 background: url(file_icon.gif) center right no-repeat;
605 padding-right: 18px;
606 }
607 #bodyContent a[href ^="irc://"],
608 .link-irc {
609 background: url(discussionitem_icon.gif) center right no-repeat;
610 padding-right: 18px;
611 }
612 #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
613 #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
614 #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
615 #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
616 #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
617 #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
618 .link-audio {
619 background: url("audio.png") center right no-repeat;
620 padding-right: 13px;
621 }
622 #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
623 #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
624 #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
625 #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
626 .link-video {
627 background: url("video.png") center right no-repeat;
628 padding-right: 13px;
629 }
630 #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
631 #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
632 #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
633 .link-document {
634 background: url("document.png") center right no-repeat;
635 padding-right: 12px;
636 }
637
638 /* disable interwiki styling */
639 #bodyContent a.extiw,
640 #bodyContent a.extiw:active {
641 color: #36b;
642 background: none;
643 padding: 0;
644 }
645 #bodyContent a.external {
646 color: #36b;
647 }
648 /* this can be used in the content area to switch off
649 special external link styling */
650 #bodyContent .plainlinks a {
651 background: none !important;
652 padding: 0 !important;
653 }
654 /*
655 ** Structural Elements
656 */
657
658 /*
659 ** general portlet styles (elements in the quickbar)
660 */
661 .portlet {
662 border: none;
663 margin: 0 0 .5em;
664 padding: 0;
665 float: none;
666 width: 11.6em;
667 overflow: hidden;
668 }
669 .portlet h4 {
670 font-size: 95%;
671 font-weight: normal;
672 white-space: nowrap;
673 }
674 .portlet h5 {
675 background: transparent;
676 padding: 0 1em 0 .5em;
677 display: inline;
678 height: 1em;
679 text-transform: lowercase;
680 font-size: 91%;
681 font-weight: normal;
682 white-space: nowrap;
683 }
684 .portlet h6 {
685 background: #ffae2e;
686 border: 1px solid #2f6fab;
687 border-style: solid solid none solid;
688 padding: 0 1em 0 1em;
689 text-transform: lowercase;
690 display: block;
691 font-size: 1em;
692 height: 1.2em;
693 font-weight: normal;
694 white-space: nowrap;
695 }
696 .pBody {
697 font-size: 95%;
698 background-color: white;
699 color: black;
700 border-collapse: collapse;
701 border: 1px solid #aaa;
702 padding: 0 .8em .3em .5em;
703 }
704 .portlet h1,
705 .portlet h2,
706 .portlet h3,
707 .portlet h4 {
708 margin: 0;
709 padding: 0;
710 }
711 .portlet ul {
712 line-height: 1.5em;
713 list-style-type: square;
714 list-style-image: url(bullet.gif);
715 font-size: 95%;
716 }
717 .portlet li {
718 padding: 0;
719 margin: 0;
720 }
721
722 /*
723 ** Logo properties
724 */
725
726 /* @media screen, projection { */
727 #p-logo {
728 top: 0;
729 left: 0;
730 position: absolute; /*needed to use z-index */
731 z-index: 3;
732 height: 155px;
733 width: 12em;
734 overflow: visible;
735 }
736 #p-logo h5 {
737 display: none;
738 }
739 #p-logo a,
740 #p-logo a:hover {
741 display: block;
742 height: 155px;
743 width: 12.2em;
744 background-repeat: no-repeat;
745 background-position: 35% 50% !important;
746 text-decoration: none;
747 }
748 /* } */
749 /*
750 ** the navigation portlet
751 */
752
753 /* @media screen, projection { */
754 #p-navigation {
755 position: relative;
756 z-index: 3;
757 }
758 #p-navigation a {
759 display: block;
760 }
761 #p-navigation li.active a, #p-navigation li.active a:hover {
762 display: inline;
763 }
764 /* } */
765
766 #p-navigation .pBody {
767 padding-right: 0;
768 }
769
770 #p-navigation li.active a, #p-navigation li.active a:hover {
771 text-decoration: none;
772 font-weight: bold;
773 }
774
775
776 /*
777 ** Search portlet
778 */
779 /* @media screen, projection { */
780 #p-search {
781 position: relative;
782 z-index: 3;
783 }
784 /* } */
785 input.searchButton {
786 margin-top: 1px;
787 font-size: 95%;
788 }
789 #searchGoButton {
790 padding-left: .5em;
791 padding-right: .5em;
792 font-weight: bold;
793 }
794 #searchInput {
795 width: 10.9em;
796 margin: 0;
797 font-size: 95%;
798 }
799 #p-search .pBody {
800 padding: .5em .4em .4em .4em;
801 text-align: center;
802 }
803
804 /*
805 ** the personal toolbar
806 */
807 /* @media screen, projection { */
808 #p-personal {
809 position: absolute;
810 left: 0;
811 top: 0;
812 z-index: 0;
813 }
814 #p-personal {
815 width: 100%;
816 white-space: nowrap;
817 padding: 0;
818 margin: 0;
819 border: none;
820 background: none;
821 overflow: visible;
822 line-height: 1.2em;
823 }
824 #p-personal h5 {
825 display: none;
826 }
827 #p-personal .portlet,
828 #p-personal .pBody {
829 z-index: 0;
830 padding: 0;
831 margin: 0;
832 border: none;
833 overflow: visible;
834 background: none;
835 }
836 /* this is the ul contained in the portlet */
837 #p-personal ul {
838 border: none;
839 line-height: 1.4em;
840 color: #2f6fab;
841 padding: 0 2em 0 3em;
842 margin: 0;
843 text-align: right;
844 list-style: none;
845 z-index: 0;
846 background: none;
847 cursor: default;
848 }
849 #p-personal li {
850 z-index: 0;
851 border: none;
852 padding: 0;
853 display: inline;
854 color: #2f6fab;
855 margin-left: 1em;
856 line-height: 1.2em;
857 background: none;
858 }
859 #p-personal li a {
860 text-decoration: none;
861 color: #005896;
862 padding-bottom: .2em;
863 background: none;
864 }
865 #p-personal li a:hover {
866 background-color: white;
867 padding-bottom: .2em;
868 text-decoration: none;
869 }
870 #p-personal li.active a:hover {
871 background-color: transparent;
872 }
873 /* the icon in front of the user name, single quotes
874 in bg url to hide it from iemac */
875 li#pt-userpage,
876 li#pt-anonuserpage,
877 li#pt-login {
878 background: url(user.gif) top left no-repeat;
879 padding-left: 20px;
880 text-transform: none;
881 }
882 /* } */
883 #p-personal ul {
884 text-transform: lowercase;
885 }
886 #p-personal li.active {
887 font-weight: bold;
888 }
889 /*
890 ** the page-related actions- page/talk, edit etc
891 */
892 /* @media screen, projection { */
893 #p-cactions {
894 position: absolute;
895 top: 1.3em;
896 left: 11.5em;
897 margin: 0;
898 white-space: nowrap;
899 width: 76%;
900 line-height: 1.1em;
901 overflow: visible;
902 background: none;
903 border-collapse: collapse;
904 padding-left: 1em;
905 list-style: none;
906 font-size: 95%;
907 }
908 #p-cactions ul {
909 list-style: none;
910 }
911 #p-cactions li {
912 display: inline;
913 border: 1px solid #aaa;
914 border-bottom: none;
915 padding: 0 0 .1em 0;
916 margin: 0 .3em 0 0;
917 overflow: visible;
918 background: white;
919 }
920 #p-cactions li.selected {
921 border-color: #fabd23;
922 padding: 0 0 .2em 0;
923 font-weight: bold;
924 }
925 #p-cactions li a {
926 background-color: #fbfbfb;
927 color: #002bb8;
928 border: none;
929 padding: 0 .8em .3em;
930 position: relative;
931 z-index: 0;
932 margin: 0;
933 text-decoration: none;
934 }
935 #p-cactions li.selected a {
936 z-index: 3;
937 padding: 0 1em .2em!important;
938 background-color: white;
939 }
940 #p-cactions .new a {
941 color: #ba0000;
942 }
943 #p-cactions li a:hover {
944 z-index: 3;
945 text-decoration: none;
946 background-color: white;
947 }
948 #p-cactions h5 {
949 display: none;
950 }
951 #p-cactions li.istalk {
952 margin-right: 0;
953 }
954 #p-cactions li.istalk a {
955 padding-right: .5em;
956 }
957 #p-cactions #ca-addsection a {
958 padding-left: .4em;
959 padding-right: .4em;
960 }
961 /* offsets to distinguish the tab groups */
962 li#ca-talk {
963 margin-right: 1.6em;
964 }
965 li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print {
966 margin-left: 1.6em;
967 }
968 #p-cactions .pBody {
969 font-size: 1em;
970 background-color: transparent;
971 color: inherit;
972 border-collapse: inherit;
973 border: 0;
974 padding: 0;
975 }
976 /* } */
977 #p-cactions .hiddenStructure {
978 display: none;
979 }
980 #p-cactions li a {
981 text-transform: lowercase;
982 }
983
984 /*
985 ** the remaining portlets
986 */
987 /* @media screen, projection { */
988 #p-tbx,
989 #p-lang {
990 position: relative;
991 z-index: 3;
992 }
993 /* } */
994
995 /* TODO: #t-iscite is only used by the Cite extension, come up with some
996 * system which allows extensions to add to this file on the fly
997 */
998 #t-ispermalink, #t-iscite {
999 color: #999;
1000 }
1001 /*
1002 ** footer
1003 */
1004 #footer {
1005 background-color: white;
1006 border-top: 1px solid #fabd23;
1007 border-bottom: 1px solid #fabd23;
1008 margin: .6em 0 1em 0;
1009 padding: .4em 0 1.2em 0;
1010 text-align: center;
1011 font-size: 90%;
1012 }
1013 #footer li {
1014 display: inline;
1015 margin: 0 1.3em;
1016 }
1017 #f-poweredbyico, #f-copyrightico {
1018 margin: 0 8px;
1019 position: relative;
1020 top: -2px; /* Bump it up just a tad */
1021 }
1022 #f-poweredbyico {
1023 float: right;
1024 height: 1%;
1025 }
1026 #f-copyrightico {
1027 float: left;
1028 height: 1%;
1029 }
1030
1031 /* js pref toc */
1032 #preftoc {
1033 margin: 0;
1034 padding: 0;
1035 width: 100%;
1036 clear: both;
1037 }
1038 #preftoc li {
1039 background-color: #f0f0f0;
1040 color: #000;
1041 }
1042 /* @media screen, projection { */
1043 #preftoc li {
1044 margin: 1px -2px 1px 2px;
1045 float: left;
1046 padding: 2px 0 3px 0;
1047 border: 1px solid #fff;
1048 border-right-color: #716f64;
1049 border-bottom: 0;
1050 position: relative;
1051 white-space: nowrap;
1052 list-style-type: none;
1053 list-style-image: none;
1054 z-index: 3;
1055 }
1056 /* } */
1057 #preftoc li.selected {
1058 font-weight: bold;
1059 background-color: #f9f9f9;
1060 border: 1px solid #aaa;
1061 border-bottom: none;
1062 cursor: default;
1063 top: 1px;
1064 padding-top: 2px;
1065 margin-right: -3px;
1066 }
1067 #preftoc > li.selected {
1068 top: 2px;
1069 }
1070 #preftoc a,
1071 #preftoc a:active {
1072 display: block;
1073 color: #000;
1074 padding: 0 .7em;
1075 position: relative;
1076 text-decoration: none;
1077 }
1078 #preftoc li.selected a {
1079 cursor: default;
1080 text-decoration: none;
1081 }
1082 #prefcontrol {
1083 padding-top: 2em;
1084 clear: both;
1085 }
1086 #preferences {
1087 margin: 0;
1088 border: 1px solid #aaa;
1089 clear: both;
1090 padding: 1.5em;
1091 background-color: #F9F9F9;
1092 }
1093 .prefsection {
1094 border: none;
1095 padding: 0;
1096 margin: 0;
1097 }
1098 .prefsection fieldset {
1099 border: 1px solid #aaa;
1100 float: left;
1101 margin-right: 2em;
1102 }
1103 .prefsection legend {
1104 font-weight: bold;
1105 }
1106 .prefsection table, .prefsection legend {
1107 background-color: #F9F9F9;
1108 }
1109 /* @media screen, projection { */
1110 .mainLegend {
1111 display: none;
1112 }
1113 /* } */
1114 div.prefsectiontip {
1115 font-size: x-small;
1116 padding: .2em 2em;
1117 color: #666;
1118 }
1119 .btnSavePrefs {
1120 font-weight: bold;
1121 padding-left: .3em;
1122 padding-right: .3em;
1123 }
1124
1125 .preferences-login {
1126 clear: both;
1127 margin-bottom: 1.5em;
1128 }
1129
1130 .prefcache {
1131 font-size: 90%;
1132 margin-top: 2em;
1133 }
1134
1135 div#userloginForm form,
1136 div#userlogin form#userlogin2 {
1137 margin: 0 3em 1em 0;
1138 border: 1px solid #aaa;
1139 clear: both;
1140 padding: 1.5em 2em;
1141 background-color: #f9f9f9;
1142 float: left;
1143 }
1144
1145 div#userloginForm table,
1146 div#userlogin form#userlogin2 table {
1147 background-color: #f9f9f9;
1148 }
1149
1150 div#userloginForm h2,
1151 div#userlogin form#userlogin2 h2 {
1152 padding-top: 0;
1153 }
1154
1155 div#userlogin .captcha,
1156 div#userloginForm .captcha {
1157 border: 1px solid #bbb;
1158 padding: 1.5em 2em;
1159 background-color: white;
1160 }
1161
1162
1163 #userloginprompt, #languagelinks {
1164 font-size: 85%;
1165 }
1166
1167 #login-sectiontip {
1168 font-size: 85%;
1169 line-height: 1.2;
1170 padding-top: 2em;
1171 }
1172
1173 #userlogin .loginText, #userlogin .loginPassword {
1174 width: 12em;
1175 }
1176
1177 #userloginlink a, #wpLoginattempt, #wpCreateaccount {
1178 font-weight: bold;
1179 }
1180
1181 /* @media screen, projection { */
1182 /*
1183 ** IE/Mac fixes, hope to find a validating way to move this
1184 ** to a separate stylesheet. This would work but doesn't validate:
1185 ** @import("IEMacFixes.css");
1186 */
1187 /* tabs: border on the a, not the div */
1188 * > html #p-cactions li { border: none; }
1189 * > html #p-cactions li a {
1190 border: 1px solid #aaa;
1191 border-bottom: none;
1192 }
1193 * > html #p-cactions li.selected a { border-color: #fabd23; }
1194 /* footer icons need a fixed width */
1195 * > html #f-poweredbyico,
1196 * > html #f-copyrightico { width: 88px; }
1197 * > html #bodyContent,
1198 * > html #bodyContent pre {
1199 overflow-x: auto;
1200 width: 100%;
1201 padding-bottom: 25px;
1202 }
1203 /* } */
1204
1205 /* more IE fixes */
1206 /* float/negative margin brokenness */
1207 * html #footer {margin-top: 0;}
1208 * html #column-content {
1209 display: inline;
1210 margin-bottom: 0;
1211 }
1212 * html div.editsection { font-size: smaller; }
1213 #pagehistory li.selected { position: relative; }
1214
1215 /* Mac IE 5.0 fix; floated content turns invisible */
1216 * > html #column-content {
1217 float: none;
1218 }
1219 * > html #column-one {
1220 position: absolute;
1221 left: 0;
1222 top: 0;
1223 }
1224 * > html #footer {
1225 margin-left: 13.2em;
1226 }
1227 .redirectText {
1228 font-size: 150%;
1229 margin: 5px;
1230 }
1231
1232 .printfooter {
1233 display: none;
1234 }
1235
1236 .not-patrolled {
1237 background-color: #ffa;
1238 }
1239 div.patrollink {
1240 font-size: 75%;
1241 text-align: right;
1242 }
1243 span.newpage, span.minor, span.searchmatch, span.bot {
1244 font-weight: bold;
1245 }
1246 span.unpatrolled {
1247 font-weight: bold;
1248 color: red;
1249 }
1250
1251 span.searchmatch {
1252 color: red;
1253 }
1254 .sharedUploadNotice {
1255 font-style: italic;
1256 }
1257
1258 span.updatedmarker {
1259 color: black;
1260 background-color: #0f0;
1261 }
1262
1263 table.gallery {
1264 border: 1px solid #ccc;
1265 margin: 2px;
1266 padding: 2px;
1267 background-color: white;
1268 }
1269
1270 table.gallery tr {
1271 vertical-align: top;
1272 }
1273
1274 table.gallery td {
1275 vertical-align: top;
1276 background-color: #f9f9f9;
1277 border: solid 2px white;
1278 }
1279 /* Keep this temporarily so that cached pages will display right */
1280 table.gallery td.galleryheader {
1281 text-align: center;
1282 font-weight: bold;
1283 }
1284 table.gallery caption {
1285 font-weight: bold;
1286 }
1287
1288 div.gallerybox {
1289 margin: 2px;
1290 }
1291
1292 div.gallerybox div.thumb {
1293 text-align: center;
1294 border: 1px solid #ccc;
1295 margin: 2px;
1296 }
1297
1298 div.gallerytext {
1299 overflow: hidden;
1300 font-size: 94%;
1301 padding: 2px 4px;
1302 }
1303
1304 span.comment {
1305 font-style: italic;
1306 }
1307
1308 span.changedby {
1309 font-size: 95%;
1310 }
1311
1312 .previewnote {
1313 text-indent: 3em;
1314 color: #c00;
1315 border-bottom: 1px solid #aaa;
1316 padding-bottom: 1em;
1317 margin-bottom: 1em;
1318 }
1319
1320 .previewnote p {
1321 margin: 0;
1322 padding: 0;
1323 }
1324
1325 .editExternally {
1326 border: 1px solid gray;
1327 background-color: #ffffff;
1328 padding: 3px;
1329 margin-top: 0.5em;
1330 float: left;
1331 font-size: small;
1332 text-align: center;
1333 }
1334 .editExternallyHelp {
1335 font-style: italic;
1336 color: gray;
1337 }
1338
1339 li span.deleted, span.history-deleted {
1340 text-decoration: line-through;
1341 color: #888;
1342 font-style: italic;
1343 }
1344
1345 .toggle {
1346 margin-left: 2em;
1347 text-indent: -2em;
1348 }
1349
1350 /* Classes for EXIF data display */
1351 table.mw_metadata {
1352 font-size: 0.8em;
1353 margin-left: 0.5em;
1354 margin-bottom: 0.5em;
1355 width: 300px;
1356 }
1357
1358 table.mw_metadata caption {
1359 font-weight: bold;
1360 }
1361
1362 table.mw_metadata th {
1363 font-weight: normal;
1364 }
1365
1366 table.mw_metadata td {
1367 padding: 0.1em;
1368 }
1369
1370 table.mw_metadata {
1371 border: none;
1372 border-collapse: collapse;
1373 }
1374
1375 table.mw_metadata td, table.mw_metadata th {
1376 text-align: center;
1377 border: 1px solid #aaaaaa;
1378 padding-left: 0.1em;
1379 padding-right: 0.1em;
1380 }
1381
1382 table.mw_metadata th {
1383 background-color: #f9f9f9;
1384 }
1385
1386 table.mw_metadata td {
1387 background-color: #fcfcfc;
1388 }
1389
1390 table.collapsed tr.collapsable {
1391 display: none;
1392 }
1393
1394
1395 /* filetoc */
1396 ul#filetoc {
1397 text-align: center;
1398 border: 1px solid #aaaaaa;
1399 background-color: #f9f9f9;
1400 padding: 5px;
1401 font-size: 95%;
1402 margin-bottom: 0.5em;
1403 margin-left: 0;
1404 margin-right: 0;
1405 }
1406
1407 #filetoc li {
1408 display: inline;
1409 list-style-type: none;
1410 padding-right: 2em;
1411 }
1412
1413 input#wpSummary {
1414 width: 80%;
1415 }
1416
1417 /* @bug 1714 */
1418 input#wpSave, input#wpDiff {
1419 margin-right: 0.33em;
1420 }
1421
1422 #editform .editOptions {
1423 display: inline;
1424 }
1425
1426 #wpSave {
1427 font-weight: bold;
1428 }
1429
1430 /* Classes for article validation */
1431
1432 table.revisionform_default {
1433 border: 1px solid #000000;
1434 }
1435
1436 table.revisionform_focus {
1437 border: 1px solid #000000;
1438 background-color:#00BBFF;
1439 }
1440
1441 tr.revision_tr_default {
1442 background-color:#EEEEEE;
1443 }
1444
1445 tr.revision_tr_first {
1446 background-color:#DDDDDD;
1447 }
1448
1449 p.revision_saved {
1450 color: green;
1451 font-weight:bold;
1452 }
1453
1454 #mw_trackbacks {
1455 border: solid 1px #bbbbff;
1456 background-color: #eeeeff;
1457 padding: 0.2em;
1458 }
1459
1460
1461 /* Allmessages table */
1462
1463 #allmessagestable th {
1464 background-color: #b2b2ff;
1465 }
1466
1467 #allmessagestable tr.orig {
1468 background-color: #ffe2e2;
1469 }
1470
1471 #allmessagestable tr.new {
1472 background-color: #e2ffe2;
1473 }
1474
1475 #allmessagestable tr.def {
1476 background-color: #f0f0ff;
1477 }
1478
1479
1480 /* noarticletext */
1481 div.noarticletext {
1482 border: 1px solid #ccc;
1483 background: #fff;
1484 padding: .2em 1em;
1485 color: #000;
1486 }
1487
1488 div#searchTargetContainer {
1489 left: 10px;
1490 top: 10px;
1491 width: 90%;
1492 background: white;
1493 }
1494
1495 div#searchTarget {
1496 padding: 3px;
1497 margin: 5px;
1498 background: #F0F0F0;
1499 border: solid 1px blue;
1500 }
1501
1502 div#searchTarget ul li {
1503 list-style: none;
1504 }
1505
1506 div#searchTarget ul li:before {
1507 color: orange;
1508 content: "\00BB \0020";
1509 }
1510
1511 div.multipageimagenavbox {
1512 border: solid 1px silver;
1513 padding: 4px;
1514 margin: 1em;
1515 -moz-border-radius: 6px;
1516 background: #f0f0f0;
1517 }
1518
1519 div.multipageimagenavbox div.thumb {
1520 border: none;
1521 margin-left: 2em;
1522 margin-right: 2em;
1523 }
1524
1525 div.multipageimagenavbox hr {
1526 margin: 6px;
1527 }
1528
1529 table.multipageimage td {
1530 text-align: center;
1531 }
1532
1533 /** Special:Version */
1534
1535 table#sv-ext, table#sv-hooks {
1536 margin: 1em;
1537 padding:0em;
1538 }
1539
1540 #sv-ext td, #sv-hooks td,
1541 #sv-ext th, #sv-hooks th {
1542 border: 1px solid #A0A0A0;
1543 padding: 0 0.15em 0 0.15em;
1544 }
1545 #sv-ext th, #sv-hooks th {
1546 background-color: #F0F0F0;
1547 color: black;
1548 padding: 0 0.15em 0 0.15em;
1549 }
1550 tr.sv-space{
1551 height: 0.8em;
1552 border:none;
1553 }
1554 tr.sv-space td { display: none; }
1555
1556 /*
1557 Table pager (e.g. Special:Imagelist)
1558 - remove underlines from the navigation link
1559 - collapse borders
1560 - set the borders to outsets (similar to Special:Allmessages)
1561 - remove line wrapping for all td and th, set background color
1562 - restore line wrapping for the last two table cells (description and size)
1563 */
1564 .TablePager_nav a { text-decoration: none; }
1565 .TablePager { border-collapse: collapse; }
1566 .TablePager, .TablePager td, .TablePager th {
1567 border: 1px solid #aaaaaa;
1568 padding: 0 0.15em 0 0.15em;
1569 }
1570 .TablePager th { background-color: #eeeeff }
1571 .TablePager td { background-color: #ffffff }
1572 .TablePager tr:hover td { background-color: #eeeeff }
1573
1574 .imagelist td, .imagelist th { white-space: nowrap }
1575 .imagelist .TablePager_col_links { background-color: #eeeeff }
1576 .imagelist .TablePager_col_img_description { white-space: normal }
1577 .imagelist th.TablePager_sort { background-color: #ccccff }
1578
1579 .templatesUsed { margin-top: 1.5em; }
1580
1581 .mw-summary-preview {
1582 margin: 0.1em 0;
1583 }
1584
1585 /* Convenience links on Special:Ipblocklist */
1586 p.mw-ipb-conveniencelinks {
1587 font-size: 90%;
1588 float: right;
1589 }
1590
1591 /* Friendlier slave lag warnings */
1592 div.mw-lag-warn-normal,
1593 div.mw-lag-warn-high {
1594 padding: 3px;
1595 text-align: center;
1596 margin: 3px auto;
1597 }
1598 div.mw-lag-warn-normal {
1599 border: 1px solid #FFCC66;
1600 background-color: #FFFFCC;
1601 }
1602 div.mw-lag-warn-high {
1603 font-weight: bold;
1604 border: 2px solid #FF0033;
1605 background-color: #FFCCCC;
1606 }
1607
1608 /* Recreating-deleted-page warning and log entries */
1609 div#mw-recreate-deleted-warn {
1610 padding: 3px;
1611 margin-bottom: 3px;
1612 border: 2px solid #2F6FAB;
1613 }
1614 div#mw-recreate-deleted-warn ul li {
1615 font-size: 90%;
1616 }
1617 .MediaTransformError {
1618 background-color: #ccc;
1619 padding: 0.1em;
1620 }
1621 .MediaTransformError td {
1622 text-align: center;
1623 vertical-align: middle;
1624 font-size: 90%;
1625 }