1022f9cba317b990116ee7a939d93dd06d63807f
[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 speak: none;
494 }
495 img.tex {
496 vertical-align: middle;
497 }
498 span.texhtml {
499 font-family: serif;
500 }
501
502 /* Have a checkered background on images on the description pages and in galleries
503 to make transparency visible
504
505 #file img, .gallerybox .thumb img {
506 background: url(Checker-16x16.png) repeat;
507 }
508 */
509
510 /*
511 ** classes for special content elements like town boxes
512 ** intended to be referenced directly from the wiki src
513 */
514
515 /*
516 ** User styles
517 */
518 /* table standards */
519 table.rimage {
520 float: right;
521 position: relative;
522 margin-left: 1em;
523 margin-bottom: 1em;
524 text-align: center;
525 }
526 .toccolours {
527 border: 1px solid #aaa;
528 background-color: #f9f9f9;
529 padding: 5px;
530 font-size: 95%;
531 }
532 div.townBox {
533 position: relative;
534 float: right;
535 background: white;
536 margin-left: 1em;
537 border: 1px solid gray;
538 padding: .3em;
539 width: 200px;
540 overflow: hidden;
541 clear: right;
542 }
543 div.townBox dl {
544 padding: 0;
545 margin: 0 0 .3em;
546 font-size: 96%;
547 }
548 div.townBox dl dt {
549 background: none;
550 margin: .4em 0 0;
551 }
552 div.townBox dl dd {
553 margin: .1em 0 0 1.1em;
554 background-color: #f3f3f3;
555 }
556
557 /*
558 ** edit views etc
559 */
560 .special li {
561 line-height: 1.4em;
562 margin: 0;
563 padding: 0;
564 }
565
566 /* Page history styling */
567 /* the auto-generated edit comments */
568 .autocomment {
569 color: gray;
570 }
571 #pagehistory span.user {
572 margin-left: 1.4em;
573 margin-right: .4em;
574 }
575 #pagehistory span.minor {
576 font-weight: bold;
577 }
578 #pagehistory li {
579 border: 1px solid white;
580 }
581 #pagehistory li.selected {
582 background-color: #f9f9f9;
583 border: 1px dashed #aaa;
584 }
585
586 /*
587 ** keep the whitespace in front of the ^=, hides rule from konqueror
588 ** this is css3, the validator doesn't like it when validating as css2
589 */
590 #bodyContent a.external,
591 #bodyContent a[href ^="gopher://"] {
592 background: url(external.png) center right no-repeat;
593 padding-right: 13px;
594 }
595 #bodyContent a[href ^="https://"],
596 .link-https {
597 background: url(lock_icon.gif) center right no-repeat;
598 padding-right: 16px;
599 }
600 #bodyContent a[href ^="mailto:"],
601 .link-mailto {
602 background: url(mail_icon.gif) center right no-repeat;
603 padding-right: 18px;
604 }
605 #bodyContent a[href ^="news://"] {
606 background: url(news_icon.png) center right no-repeat;
607 padding-right: 18px;
608 }
609 #bodyContent a[href ^="ftp://"],
610 .link-ftp {
611 background: url(file_icon.gif) center right no-repeat;
612 padding-right: 18px;
613 }
614 #bodyContent a[href ^="irc://"],
615 .link-irc {
616 background: url(discussionitem_icon.gif) center right no-repeat;
617 padding-right: 18px;
618 }
619 #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
620 #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
621 #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
622 #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
623 #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
624 #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
625 .link-audio {
626 background: url("audio.png") center right no-repeat;
627 padding-right: 13px;
628 }
629 #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
630 #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
631 #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
632 #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
633 .link-video {
634 background: url("video.png") center right no-repeat;
635 padding-right: 13px;
636 }
637 #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
638 #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
639 #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
640 .link-document {
641 background: url("document.png") center right no-repeat;
642 padding-right: 12px;
643 }
644
645 /* disable interwiki styling */
646 #bodyContent a.extiw,
647 #bodyContent a.extiw:active {
648 color: #36b;
649 background: none;
650 padding: 0;
651 }
652 #bodyContent a.external {
653 color: #36b;
654 }
655 /* this can be used in the content area to switch off
656 special external link styling */
657 #bodyContent .plainlinks a {
658 background: none !important;
659 padding: 0 !important;
660 }
661 /*
662 ** Structural Elements
663 */
664
665 /*
666 ** general portlet styles (elements in the quickbar)
667 */
668 .portlet {
669 border: none;
670 margin: 0 0 .5em;
671 padding: 0;
672 float: none;
673 width: 11.6em;
674 overflow: hidden;
675 }
676 .portlet h4 {
677 font-size: 95%;
678 font-weight: normal;
679 white-space: nowrap;
680 }
681 .portlet h5 {
682 background: transparent;
683 padding: 0 1em 0 .5em;
684 display: inline;
685 height: 1em;
686 text-transform: lowercase;
687 font-size: 91%;
688 font-weight: normal;
689 white-space: nowrap;
690 }
691 .portlet h6 {
692 background: #ffae2e;
693 border: 1px solid #2f6fab;
694 border-style: solid solid none solid;
695 padding: 0 1em 0 1em;
696 text-transform: lowercase;
697 display: block;
698 font-size: 1em;
699 height: 1.2em;
700 font-weight: normal;
701 white-space: nowrap;
702 }
703 .pBody {
704 font-size: 95%;
705 background-color: white;
706 color: black;
707 border-collapse: collapse;
708 border: 1px solid #aaa;
709 padding: 0 .8em .3em .5em;
710 }
711 .portlet h1,
712 .portlet h2,
713 .portlet h3,
714 .portlet h4 {
715 margin: 0;
716 padding: 0;
717 }
718 .portlet ul {
719 line-height: 1.5em;
720 list-style-type: square;
721 list-style-image: url(bullet.gif);
722 font-size: 95%;
723 }
724 .portlet li {
725 padding: 0;
726 margin: 0;
727 }
728
729 /*
730 ** Logo properties
731 */
732
733 /* @media screen, projection { */
734 #p-logo {
735 top: 0;
736 left: 0;
737 position: absolute; /*needed to use z-index */
738 z-index: 3;
739 height: 155px;
740 width: 12em;
741 overflow: visible;
742 }
743 #p-logo h5 {
744 display: none;
745 }
746 #p-logo a,
747 #p-logo a:hover {
748 display: block;
749 height: 155px;
750 width: 12.2em;
751 background-repeat: no-repeat;
752 background-position: 35% 50% !important;
753 text-decoration: none;
754 }
755 /* } */
756 /*
757 ** the navigation portlet
758 */
759
760 /* @media screen, projection { */
761 #p-navigation {
762 position: relative;
763 z-index: 3;
764 }
765 #p-navigation a {
766 display: block;
767 }
768 #p-navigation li.active a, #p-navigation li.active a:hover {
769 display: inline;
770 }
771 /* } */
772
773 #p-navigation .pBody {
774 padding-right: 0;
775 }
776
777 #p-navigation li.active a, #p-navigation li.active a:hover {
778 text-decoration: none;
779 font-weight: bold;
780 }
781
782
783 /*
784 ** Search portlet
785 */
786 /* @media screen, projection { */
787 #p-search {
788 position: relative;
789 z-index: 3;
790 }
791 /* } */
792 input.searchButton {
793 margin-top: 1px;
794 font-size: 95%;
795 }
796 #searchGoButton {
797 padding-left: .5em;
798 padding-right: .5em;
799 font-weight: bold;
800 }
801 #searchInput {
802 width: 10.9em;
803 margin: 0;
804 font-size: 95%;
805 }
806 #p-search .pBody {
807 padding: .5em .4em .4em .4em;
808 text-align: center;
809 }
810
811 /*
812 ** the personal toolbar
813 */
814 /* @media screen, projection { */
815 #p-personal {
816 position: absolute;
817 left: 0;
818 top: 0;
819 z-index: 0;
820 }
821 #p-personal {
822 width: 100%;
823 white-space: nowrap;
824 padding: 0;
825 margin: 0;
826 border: none;
827 background: none;
828 overflow: visible;
829 line-height: 1.2em;
830 }
831 #p-personal h5 {
832 display: none;
833 }
834 #p-personal .portlet,
835 #p-personal .pBody {
836 z-index: 0;
837 padding: 0;
838 margin: 0;
839 border: none;
840 overflow: visible;
841 background: none;
842 }
843 /* this is the ul contained in the portlet */
844 #p-personal ul {
845 border: none;
846 line-height: 1.4em;
847 color: #2f6fab;
848 padding: 0 2em 0 3em;
849 margin: 0;
850 text-align: right;
851 list-style: none;
852 z-index: 0;
853 background: none;
854 cursor: default;
855 }
856 #p-personal li {
857 z-index: 0;
858 border: none;
859 padding: 0;
860 display: inline;
861 color: #2f6fab;
862 margin-left: 1em;
863 line-height: 1.2em;
864 background: none;
865 }
866 #p-personal li a {
867 text-decoration: none;
868 color: #005896;
869 padding-bottom: .2em;
870 background: none;
871 }
872 #p-personal li a:hover {
873 background-color: white;
874 padding-bottom: .2em;
875 text-decoration: none;
876 }
877 #p-personal li.active a:hover {
878 background-color: transparent;
879 }
880 /* the icon in front of the user name, single quotes
881 in bg url to hide it from iemac */
882 li#pt-userpage,
883 li#pt-anonuserpage,
884 li#pt-login {
885 background: url(user.gif) top left no-repeat;
886 padding-left: 20px;
887 text-transform: none;
888 }
889 /* } */
890 #p-personal ul {
891 text-transform: lowercase;
892 }
893 #p-personal li.active {
894 font-weight: bold;
895 }
896 /*
897 ** the page-related actions- page/talk, edit etc
898 */
899 /* @media screen, projection { */
900 #p-cactions {
901 position: absolute;
902 top: 1.3em;
903 left: 11.5em;
904 margin: 0;
905 white-space: nowrap;
906 width: 76%;
907 line-height: 1.1em;
908 overflow: visible;
909 background: none;
910 border-collapse: collapse;
911 padding-left: 1em;
912 list-style: none;
913 font-size: 95%;
914 }
915 #p-cactions ul {
916 list-style: none;
917 }
918 #p-cactions li {
919 display: inline;
920 border: 1px solid #aaa;
921 border-bottom: none;
922 padding: 0 0 .1em 0;
923 margin: 0 .3em 0 0;
924 overflow: visible;
925 background: white;
926 }
927 #p-cactions li.selected {
928 border-color: #fabd23;
929 padding: 0 0 .2em 0;
930 font-weight: bold;
931 }
932 #p-cactions li a {
933 background-color: #fbfbfb;
934 color: #002bb8;
935 border: none;
936 padding: 0 .8em .3em;
937 position: relative;
938 z-index: 0;
939 margin: 0;
940 text-decoration: none;
941 }
942 #p-cactions li.selected a {
943 z-index: 3;
944 padding: 0 1em .2em!important;
945 background-color: white;
946 }
947 #p-cactions .new a {
948 color: #ba0000;
949 }
950 #p-cactions li a:hover {
951 z-index: 3;
952 text-decoration: none;
953 background-color: white;
954 }
955 #p-cactions h5 {
956 display: none;
957 }
958 #p-cactions li.istalk {
959 margin-right: 0;
960 }
961 #p-cactions li.istalk a {
962 padding-right: .5em;
963 }
964 #p-cactions #ca-addsection a {
965 padding-left: .4em;
966 padding-right: .4em;
967 }
968 /* offsets to distinguish the tab groups */
969 li#ca-talk {
970 margin-right: 1.6em;
971 }
972 li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print {
973 margin-left: 1.6em;
974 }
975 #p-cactions .pBody {
976 font-size: 1em;
977 background-color: transparent;
978 color: inherit;
979 border-collapse: inherit;
980 border: 0;
981 padding: 0;
982 }
983 /* } */
984 #p-cactions .hiddenStructure {
985 display: none;
986 }
987 #p-cactions li a {
988 text-transform: lowercase;
989 }
990
991 /*
992 ** the remaining portlets
993 */
994 /* @media screen, projection { */
995 #p-tbx,
996 #p-lang {
997 position: relative;
998 z-index: 3;
999 }
1000 /* } */
1001
1002 /* TODO: #t-iscite is only used by the Cite extension, come up with some
1003 * system which allows extensions to add to this file on the fly
1004 */
1005 #t-ispermalink, #t-iscite {
1006 color: #999;
1007 }
1008 /*
1009 ** footer
1010 */
1011 #footer {
1012 background-color: white;
1013 border-top: 1px solid #fabd23;
1014 border-bottom: 1px solid #fabd23;
1015 margin: .6em 0 1em 0;
1016 padding: .4em 0 1.2em 0;
1017 text-align: center;
1018 font-size: 90%;
1019 }
1020 #footer li {
1021 display: inline;
1022 margin: 0 1.3em;
1023 }
1024 #f-poweredbyico, #f-copyrightico {
1025 margin: 0 8px;
1026 position: relative;
1027 top: -2px; /* Bump it up just a tad */
1028 }
1029 #f-poweredbyico {
1030 float: right;
1031 height: 1%;
1032 }
1033 #f-copyrightico {
1034 float: left;
1035 height: 1%;
1036 }
1037
1038 /* js pref toc */
1039 #preftoc {
1040 margin: 0;
1041 padding: 0;
1042 width: 100%;
1043 clear: both;
1044 }
1045 #preftoc li {
1046 background-color: #f0f0f0;
1047 color: #000;
1048 }
1049 /* @media screen, projection { */
1050 #preftoc li {
1051 margin: 1px -2px 1px 2px;
1052 float: left;
1053 padding: 2px 0 3px 0;
1054 border: 1px solid #fff;
1055 border-right-color: #716f64;
1056 border-bottom: 0;
1057 position: relative;
1058 white-space: nowrap;
1059 list-style-type: none;
1060 list-style-image: none;
1061 z-index: 3;
1062 }
1063 /* } */
1064 #preftoc li.selected {
1065 font-weight: bold;
1066 background-color: #f9f9f9;
1067 border: 1px solid #aaa;
1068 border-bottom: none;
1069 cursor: default;
1070 top: 1px;
1071 padding-top: 2px;
1072 margin-right: -3px;
1073 }
1074 #preftoc > li.selected {
1075 top: 2px;
1076 }
1077 #preftoc a,
1078 #preftoc a:active {
1079 display: block;
1080 color: #000;
1081 padding: 0 .7em;
1082 position: relative;
1083 text-decoration: none;
1084 }
1085 #preftoc li.selected a {
1086 cursor: default;
1087 text-decoration: none;
1088 }
1089 #prefcontrol {
1090 padding-top: 2em;
1091 clear: both;
1092 }
1093 #preferences {
1094 margin: 0;
1095 border: 1px solid #aaa;
1096 clear: both;
1097 padding: 1.5em;
1098 background-color: #F9F9F9;
1099 }
1100 .prefsection {
1101 border: none;
1102 padding: 0;
1103 margin: 0;
1104 }
1105 .prefsection fieldset {
1106 border: 1px solid #aaa;
1107 float: left;
1108 margin-right: 2em;
1109 }
1110 .prefsection legend {
1111 font-weight: bold;
1112 }
1113 .prefsection table, .prefsection legend {
1114 background-color: #F9F9F9;
1115 }
1116 /* @media screen, projection { */
1117 .mainLegend {
1118 display: none;
1119 }
1120 /* } */
1121 div.prefsectiontip {
1122 font-size: x-small;
1123 padding: .2em 2em;
1124 color: #666;
1125 }
1126 .btnSavePrefs {
1127 font-weight: bold;
1128 padding-left: .3em;
1129 padding-right: .3em;
1130 }
1131
1132 .preferences-login {
1133 clear: both;
1134 margin-bottom: 1.5em;
1135 }
1136
1137 .prefcache {
1138 font-size: 90%;
1139 margin-top: 2em;
1140 }
1141
1142 div#userloginForm form,
1143 div#userlogin form#userlogin2 {
1144 margin: 0 3em 1em 0;
1145 border: 1px solid #aaa;
1146 clear: both;
1147 padding: 1.5em 2em;
1148 background-color: #f9f9f9;
1149 float: left;
1150 }
1151
1152 div#userloginForm table,
1153 div#userlogin form#userlogin2 table {
1154 background-color: #f9f9f9;
1155 }
1156
1157 div#userloginForm h2,
1158 div#userlogin form#userlogin2 h2 {
1159 padding-top: 0;
1160 }
1161
1162 div#userlogin .captcha,
1163 div#userloginForm .captcha {
1164 border: 1px solid #bbb;
1165 padding: 1.5em 2em;
1166 background-color: white;
1167 }
1168
1169
1170 #userloginprompt, #languagelinks {
1171 font-size: 85%;
1172 }
1173
1174 #login-sectiontip {
1175 font-size: 85%;
1176 line-height: 1.2;
1177 padding-top: 2em;
1178 }
1179
1180 #userlogin .loginText, #userlogin .loginPassword {
1181 width: 12em;
1182 }
1183
1184 #userloginlink a, #wpLoginattempt, #wpCreateaccount {
1185 font-weight: bold;
1186 }
1187
1188 /* @media screen, projection { */
1189 /*
1190 ** IE/Mac fixes, hope to find a validating way to move this
1191 ** to a separate stylesheet. This would work but doesn't validate:
1192 ** @import("IEMacFixes.css");
1193 */
1194 /* tabs: border on the a, not the div */
1195 * > html #p-cactions li { border: none; }
1196 * > html #p-cactions li a {
1197 border: 1px solid #aaa;
1198 border-bottom: none;
1199 }
1200 * > html #p-cactions li.selected a { border-color: #fabd23; }
1201 /* footer icons need a fixed width */
1202 * > html #f-poweredbyico,
1203 * > html #f-copyrightico { width: 88px; }
1204 * > html #bodyContent,
1205 * > html #bodyContent pre {
1206 overflow-x: auto;
1207 width: 100%;
1208 padding-bottom: 25px;
1209 }
1210 /* } */
1211
1212 /* more IE fixes */
1213 /* float/negative margin brokenness */
1214 * html #footer {margin-top: 0;}
1215 * html #column-content {
1216 display: inline;
1217 margin-bottom: 0;
1218 }
1219 * html div.editsection { font-size: smaller; }
1220 #pagehistory li.selected { position: relative; }
1221
1222 /* Mac IE 5.0 fix; floated content turns invisible */
1223 * > html #column-content {
1224 float: none;
1225 }
1226 * > html #column-one {
1227 position: absolute;
1228 left: 0;
1229 top: 0;
1230 }
1231 * > html #footer {
1232 margin-left: 13.2em;
1233 }
1234 .redirectText {
1235 font-size: 150%;
1236 margin: 5px;
1237 }
1238
1239 .printfooter {
1240 display: none;
1241 }
1242
1243 .not-patrolled {
1244 background-color: #ffa;
1245 }
1246 div.patrollink {
1247 font-size: 75%;
1248 text-align: right;
1249 }
1250 span.newpage, span.minor, span.searchmatch, span.bot {
1251 font-weight: bold;
1252 }
1253 span.unpatrolled {
1254 font-weight: bold;
1255 color: red;
1256 }
1257
1258 span.searchmatch {
1259 color: red;
1260 }
1261 .sharedUploadNotice {
1262 font-style: italic;
1263 }
1264
1265 span.updatedmarker {
1266 color: black;
1267 background-color: #0f0;
1268 }
1269
1270 table.gallery {
1271 border: 1px solid #ccc;
1272 margin: 2px;
1273 padding: 2px;
1274 background-color: white;
1275 }
1276
1277 table.gallery tr {
1278 vertical-align: top;
1279 }
1280
1281 table.gallery td {
1282 vertical-align: top;
1283 background-color: #f9f9f9;
1284 border: solid 2px white;
1285 }
1286 /* Keep this temporarily so that cached pages will display right */
1287 table.gallery td.galleryheader {
1288 text-align: center;
1289 font-weight: bold;
1290 }
1291 table.gallery caption {
1292 font-weight: bold;
1293 }
1294
1295 div.gallerybox {
1296 margin: 2px;
1297 }
1298
1299 div.gallerybox div.thumb {
1300 text-align: center;
1301 border: 1px solid #ccc;
1302 margin: 2px;
1303 }
1304
1305 div.gallerytext {
1306 overflow: hidden;
1307 font-size: 94%;
1308 padding: 2px 4px;
1309 }
1310
1311 span.comment {
1312 font-style: italic;
1313 }
1314
1315 span.changedby {
1316 font-size: 95%;
1317 }
1318
1319 .previewnote {
1320 text-indent: 3em;
1321 color: #c00;
1322 border-bottom: 1px solid #aaa;
1323 padding-bottom: 1em;
1324 margin-bottom: 1em;
1325 }
1326
1327 .previewnote p {
1328 margin: 0;
1329 padding: 0;
1330 }
1331
1332 .editExternally {
1333 border: 1px solid gray;
1334 background-color: #ffffff;
1335 padding: 3px;
1336 margin-top: 0.5em;
1337 float: left;
1338 font-size: small;
1339 text-align: center;
1340 }
1341 .editExternallyHelp {
1342 font-style: italic;
1343 color: gray;
1344 }
1345
1346 li span.deleted, span.history-deleted {
1347 text-decoration: line-through;
1348 color: #888;
1349 font-style: italic;
1350 }
1351
1352 .toggle {
1353 margin-left: 2em;
1354 text-indent: -2em;
1355 }
1356
1357 /* Classes for EXIF data display */
1358 table.mw_metadata {
1359 font-size: 0.8em;
1360 margin-left: 0.5em;
1361 margin-bottom: 0.5em;
1362 width: 300px;
1363 }
1364
1365 table.mw_metadata caption {
1366 font-weight: bold;
1367 }
1368
1369 table.mw_metadata th {
1370 font-weight: normal;
1371 }
1372
1373 table.mw_metadata td {
1374 padding: 0.1em;
1375 }
1376
1377 table.mw_metadata {
1378 border: none;
1379 border-collapse: collapse;
1380 }
1381
1382 table.mw_metadata td, table.mw_metadata th {
1383 text-align: center;
1384 border: 1px solid #aaaaaa;
1385 padding-left: 0.1em;
1386 padding-right: 0.1em;
1387 }
1388
1389 table.mw_metadata th {
1390 background-color: #f9f9f9;
1391 }
1392
1393 table.mw_metadata td {
1394 background-color: #fcfcfc;
1395 }
1396
1397 table.collapsed tr.collapsable {
1398 display: none;
1399 }
1400
1401
1402 /* filetoc */
1403 ul#filetoc {
1404 text-align: center;
1405 border: 1px solid #aaaaaa;
1406 background-color: #f9f9f9;
1407 padding: 5px;
1408 font-size: 95%;
1409 margin-bottom: 0.5em;
1410 margin-left: 0;
1411 margin-right: 0;
1412 }
1413
1414 #filetoc li {
1415 display: inline;
1416 list-style-type: none;
1417 padding-right: 2em;
1418 }
1419
1420 input#wpSummary {
1421 width: 80%;
1422 }
1423
1424 /* @bug 1714 */
1425 input#wpSave, input#wpDiff {
1426 margin-right: 0.33em;
1427 }
1428
1429 #editform .editOptions {
1430 display: inline;
1431 }
1432
1433 #wpSave {
1434 font-weight: bold;
1435 }
1436
1437 /* Classes for article validation */
1438
1439 table.revisionform_default {
1440 border: 1px solid #000000;
1441 }
1442
1443 table.revisionform_focus {
1444 border: 1px solid #000000;
1445 background-color:#00BBFF;
1446 }
1447
1448 tr.revision_tr_default {
1449 background-color:#EEEEEE;
1450 }
1451
1452 tr.revision_tr_first {
1453 background-color:#DDDDDD;
1454 }
1455
1456 p.revision_saved {
1457 color: green;
1458 font-weight:bold;
1459 }
1460
1461 #mw_trackbacks {
1462 border: solid 1px #bbbbff;
1463 background-color: #eeeeff;
1464 padding: 0.2em;
1465 }
1466
1467
1468 /* Allmessages table */
1469
1470 #allmessagestable th {
1471 background-color: #b2b2ff;
1472 }
1473
1474 #allmessagestable tr.orig {
1475 background-color: #ffe2e2;
1476 }
1477
1478 #allmessagestable tr.new {
1479 background-color: #e2ffe2;
1480 }
1481
1482 #allmessagestable tr.def {
1483 background-color: #f0f0ff;
1484 }
1485
1486
1487 /* noarticletext */
1488 div.noarticletext {
1489 border: 1px solid #ccc;
1490 background: #fff;
1491 padding: .2em 1em;
1492 color: #000;
1493 }
1494
1495 div#searchTargetContainer {
1496 left: 10px;
1497 top: 10px;
1498 width: 90%;
1499 background: white;
1500 }
1501
1502 div#searchTarget {
1503 padding: 3px;
1504 margin: 5px;
1505 background: #F0F0F0;
1506 border: solid 1px blue;
1507 }
1508
1509 div#searchTarget ul li {
1510 list-style: none;
1511 }
1512
1513 div#searchTarget ul li:before {
1514 color: orange;
1515 content: "\00BB \0020";
1516 }
1517
1518 div.multipageimagenavbox {
1519 border: solid 1px silver;
1520 padding: 4px;
1521 margin: 1em;
1522 -moz-border-radius: 6px;
1523 background: #f0f0f0;
1524 }
1525
1526 div.multipageimagenavbox div.thumb {
1527 border: none;
1528 margin-left: 2em;
1529 margin-right: 2em;
1530 }
1531
1532 div.multipageimagenavbox hr {
1533 margin: 6px;
1534 }
1535
1536 table.multipageimage td {
1537 text-align: center;
1538 }
1539
1540 /** Special:Version */
1541
1542 table#sv-ext, table#sv-hooks {
1543 margin: 1em;
1544 padding:0em;
1545 }
1546
1547 #sv-ext td, #sv-hooks td,
1548 #sv-ext th, #sv-hooks th {
1549 border: 1px solid #A0A0A0;
1550 padding: 0 0.15em 0 0.15em;
1551 }
1552 #sv-ext th, #sv-hooks th {
1553 background-color: #F0F0F0;
1554 color: black;
1555 padding: 0 0.15em 0 0.15em;
1556 }
1557 tr.sv-space{
1558 height: 0.8em;
1559 border:none;
1560 }
1561 tr.sv-space td { display: none; }
1562
1563 /*
1564 Table pager (e.g. Special:Imagelist)
1565 - remove underlines from the navigation link
1566 - collapse borders
1567 - set the borders to outsets (similar to Special:Allmessages)
1568 - remove line wrapping for all td and th, set background color
1569 - restore line wrapping for the last two table cells (description and size)
1570 */
1571 .TablePager_nav a { text-decoration: none; }
1572 .TablePager { border-collapse: collapse; }
1573 .TablePager, .TablePager td, .TablePager th {
1574 border: 1px solid #aaaaaa;
1575 padding: 0 0.15em 0 0.15em;
1576 }
1577 .TablePager th { background-color: #eeeeff }
1578 .TablePager td { background-color: #ffffff }
1579 .TablePager tr:hover td { background-color: #eeeeff }
1580
1581 .imagelist td, .imagelist th { white-space: nowrap }
1582 .imagelist .TablePager_col_links { background-color: #eeeeff }
1583 .imagelist .TablePager_col_img_description { white-space: normal }
1584 .imagelist th.TablePager_sort { background-color: #ccccff }
1585
1586 .templatesUsed { margin-top: 1.5em; }
1587
1588 .mw-summary-preview {
1589 margin: 0.1em 0;
1590 }
1591
1592 /* Convenience links on Special:Ipblocklist */
1593 p.mw-ipb-conveniencelinks {
1594 font-size: 90%;
1595 float: right;
1596 }
1597
1598 /* Friendlier slave lag warnings */
1599 div.mw-lag-warn-normal,
1600 div.mw-lag-warn-high {
1601 width: 75%;
1602 padding: 3px;
1603 text-align: center;
1604 margin: 3px auto;
1605 }
1606 div.mw-lag-warn-normal {
1607 border: 1px solid #FFCC66;
1608 background-color: #FFFFCC;
1609 }
1610 div.mw-lag-warn-high {
1611 font-weight: bold;
1612 border: 2px solid #CC3333;
1613 background-color: #CC9999;
1614 }
1615
1616 /* Recreating-deleted-page warning and log entries */
1617 div#mw-recreate-deleted-warn {
1618 padding: 3px;
1619 margin-bottom: 3px;
1620 border: 2px solid #2F6FAB;
1621 }
1622 div#mw-recreate-deleted-warn ul li {
1623 font-size: 90%;
1624 }
1625
1626 /**
1627 * Here is some stuff that's ACTUALLY COMMON TO ALL SKINS.
1628 * When the day comes, it can be moved to a *real* common.css.
1629 */
1630 .mw-plusminus-null { color: #aaa; }
1631 .texvc { direction: ltr; unicode-bidi: embed; }
1632 /* Stop floats from intruding into edit area in previews */
1633 #toolbar, #wpTextbox1 { clear: both; }
1634
1635 .MediaTransformError {
1636 background-color: #ccc;
1637 padding: 0.1em;
1638 }
1639 .MediaTransformError td {
1640 text-align: center;
1641 vertical-align: middle;
1642 font-size: 90%;
1643 }