]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/fusionforge.css
Use HTML 5
[SourceForge/phpwiki.git] / themes / fusionforge / fusionforge.css
1 /**
2  * Copyright (C) 2002-2007 $ThePhpWikiProgrammingTeam
3  * Copyright (C) 2008-2010 Alcatel-Lucent
4  *
5  * This file is part of PhpWiki.
6  *
7  * PhpWiki is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * PhpWiki is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 /*
23  * Standard Alcatel-Lucent disclaimer for contributing to open source
24  *
25  * "The Style Sheet ("Contribution") has not been tested and/or
26  * validated for release as or in products, combinations with products or
27  * other commercial use. Any use of the Contribution is entirely made at
28  * the user's own responsibility and the user can not rely on any features,
29  * functionalities or performances Alcatel-Lucent has attributed to the
30  * Contribution.
31  *
32  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
33  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
34  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
35  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
36  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
37  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
38  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
40  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
41  * ALONE BASIS."
42  */
43
44 /**
45  * General
46  */
47
48 body {
49     margin: 0 0 0 0;
50     font-family: Verdana, Arial, Helvetica, sans-serif;
51     color: #565c5e; /* Alcatel-Lucent grey */
52 }
53
54 form {
55     margin: 0;
56 }
57
58 img {
59     border: 0;
60     vertical-align: baseline;
61 }
62
63 h1 {
64     font-size: 1.8em;
65 }
66
67 h2 {
68     font-size: 1.6em;
69     line-height: 1.1em;
70 }
71
72 h3 {
73     font-size: 1.2em;
74     line-height: 1.3em;
75 }
76
77 h4 {
78     font-size: 1.0em;
79     line-height: 1.3em;
80 }
81
82 h5 {
83     font-size: 0.8em;
84 }
85
86 h6 {
87     font-size: 0.6em;
88 }
89
90 /* Titles in the page. */
91 h1, .titlebar, .widget_titlebar {
92     padding-top: 4px;
93     padding-bottom: 6px;
94     vertical-align: middle;
95     font-family: 'trebuchet MS', Arial, Helvetica, sans-serif;
96     color: #554295; /* Alcatel-Lucent violet */
97     font-weight: normal;
98     font-size: 1.8em;
99     line-height: 1.3em;
100     text-align: left;
101     height: 24px;
102     margin-top: 4px;
103 }
104
105 /* Hack for the wiki that inserts an unneccessary </p> */
106 .titlebar p {
107     color: #554295; /* Alcatel-Lucent violet */
108     font-size: 1em;
109     margin-bottom: 0;
110     margin-top: 0;
111 }
112
113 .titlebar a {
114     padding-left: 10px;
115 }
116
117 /* Because in some cases there is a <p> in nested lists */
118 li p {
119     margin: 0;
120 }
121
122 div.wikitext table p {
123     margin-top: 0.3em;
124     margin-bottom: 0.3em;
125 }
126
127 input {
128     margin: 0.1em;
129 }
130
131 input.numeric {
132     text-align: right;
133 }
134
135 fieldset {
136     background-color: #e0f3f7;
137 }
138
139 legend {
140     border: 1px solid #d8d8e7;
141     background-color: white;
142 }
143
144 table {
145     /* For Mozilla */
146     empty-cells: show;
147 }
148
149 caption {
150     caption-side: top;
151     text-align: left;
152     margin-bottom: .5ex;
153 }
154
155 /**
156  * Wiki Forms
157  *
158  * The div inside the wikiadmin upload form does not
159  * have a class yet, so it must be referenced indirectly
160  */
161 /* div.wikiaction, div.wikiadmin { */
162 div.wikiaction, form.wikiadmin div {
163     border: 1px solid #96a2ae;
164     border-right-color: #d8d8e7;
165     border-bottom-color: #d8d8e7;
166
167     margin-top: 0.5ex;
168     margin-bottom: 0.5ex;
169     padding: 0.5ex 0.5em;
170     /* Emulate the display behaviour of a table, to shrink it's width. */
171     display: table;
172 }
173
174 /* Add space between the input field and following buttons, but not after the last button. */
175 div.wikiaction input[type=text], div.wikiadmin input[type=text], form.wikiadmin input[type=file] {
176     margin-right: 0.5em;
177 }
178
179 /* QuestionMark */
180 .wikiunknown a, .named-wikiunknown a {
181     border: 1px solid #c6d2de;
182     border-right-color: #a2a2a2;
183     border-bottom-color: #a2a2a2;
184     padding-left: 1px;
185     padding-right: 1px;
186     padding-top: 1px;
187     margin-right: .15em;
188 }
189
190 /* Link icons */
191 img.linkicon {
192     vertical-align: middle;
193 }
194
195 img.inlineimage {
196     vertical-align: middle;
197 }
198
199 /**
200  * Wiki
201  */
202
203 div.wikitext pre {
204     font-family: monospace;
205     border: 1px dashed navy;
206     padding: 0.5em;
207 }
208
209 /**
210  * PageTypes
211  */
212 /* Main wiki text box */
213 div.wikitext {
214     margin-top: 1ex;
215     margin-bottom: 0.5ex;
216     padding-bottom: 1em;
217     clear: both;
218 }
219
220 /* Mozilla RecentChanges Sidebar */
221 body.sidebar {
222     margin: 0.5em;
223 }
224
225 body.sidebar div.wikitext {
226     padding: 0.5em;
227 }
228
229 body.sidebar div.wikitext ul {
230     padding-left: 1em;
231 }
232
233 body.sidebar h2 {
234     margin-top: 0;
235 }
236
237 /**
238  * Link styles
239  */
240 .wiki, .named-wiki {
241     /* text-decoration: none; */
242     font-weight: bold;
243 }
244
245 /* Action buttons */
246 a.wikiaction, a.wiki-rc-action, a.wikiunsafe,
247 input.wikiaction, input.button, input.wikiadmin {
248     text-decoration: none;
249     /* don't wrap text buttons */
250     white-space: nowrap;
251 }
252
253 input.wikiaction, input.button, input.wikiadmin {
254     margin-right: 1em;
255     margin-left: 1em;
256 }
257
258 .wikiunsafe {
259     background-color: #fcc;
260 }
261
262 /* Unknown links */
263 .wikiunknown, .named-wikiunknown {
264     font-weight: normal;
265     font-size: 100%;
266 }
267
268 /* QuestionMark #600 */
269 .wikiunknown a, .named-wikiunknown a {
270     color: #447;
271     background-color: #eee;
272     text-decoration: none;
273     font-weight: normal;
274     font-size: smaller;
275 }
276
277 /* Backlinks */
278 .backlinks {
279     text-decoration: underline;
280 }
281
282 h1 .backlinks {
283     text-decoration: none;
284     color: inherit;
285 }
286
287 /* Interwiki links */
288 .wikipage {
289     font-weight: normal;
290 }
291
292 .interwiki, i.interwiki .wikipage, em .interwiki .wikipage {
293     font-style: oblique;
294 }
295
296 .interwiki .wikipage, i .interwiki, em .interwiki {
297     font-style: normal;
298 }
299
300 table.wikipaging {
301     border: 1px solid black;
302     font-weight: bold;
303     margin-top: 10px;
304     margin-bottom: 10px;
305 }
306
307 /* CreateToc plugin =================================================== */
308
309 div.toc {
310     border: 1px solid #aaaaaa;
311     background-color: #f9f9f9;
312     padding: 5px;
313 }
314
315 div.toc ul {
316     list-style: none
317 }
318
319 div.toc p.toctitle {
320     font-weight: bold;
321     font-size: 1.6em;
322     margin-bottom: 1ex;
323 }
324
325 div.toc p {
326     margin: 0;
327 }
328
329 .toclist a {
330     text-decoration: none;
331 }
332
333 /**
334  * headings
335  */
336 div.toc p.toctitle, h2, h3, h4, h5, h6 {
337     font-family: Verdana, Arial, Helvetica, sans-serif;
338     padding-top: .5em;
339     padding-bottom: .17em;
340     border-bottom: 1px solid #aaaaaa;
341 }
342
343 h1, h1 .backlinks, h2, .wikitext h2 a, h3, .wikitext h3 a, h4, .wikitext h4 a, h5, h6 {
344     text-decoration: none;
345 }
346
347 /**
348  * Tables
349  */
350 .pagelist thead th {
351     background: #d8d8d8;
352     text-decoration: none;
353     font-weight: bold;
354 }
355
356 .pagelist thead td u {
357     text-decoration: none;
358 }
359
360 .pagelist tr {
361     vertical-align: top;
362 }
363
364 .pagelist tr.evenrow {
365     background: #eee;
366 }
367
368 .pagelist tr.oddrow {
369     background: white;
370 }
371
372 th.gridbutton {
373     background-color: #d8d8d8;
374     color: #565c5e;
375     font-weight: bold;
376     white-space: nowrap;
377     margin: 5px 0;
378     max-height: 24px;
379     padding: 5px 0 5px 0;
380     border: 1px solid black;
381 }
382
383 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
384     text-decoration: none;
385     color: #565c5e;
386 }
387
388 /**
389  * Toolbar
390  */
391 input.button {
392     font-family: Verdana, Arial, Helvetica, sans-serif;
393 }
394
395 .edit-toolbar {
396     padding: 0;
397     margin: 0;
398 }
399
400 .edit-toolbar img, .edit-toolbar input {
401     background-color: #fff;
402     border: 1px solid ButtonFace;
403 }
404
405 .tooltitle {
406     font-weight: bold;
407 }
408
409 menu, menu ul {
410     padding: 0;
411 }
412
413 menu ul {
414     display: inline;
415     margin-right: 10px;
416 }
417
418 #actionbuttons {
419     white-space: nowrap;
420     margin-left: 0;
421     margin-bottom: 0;
422 }
423
424 #actionbuttons .named-wiki,
425 #actionbuttons .wikiaction,
426 #actionbuttons .wikiadmin {
427     font-weight: normal;
428     color: #565c5e; /* Alcatel-Lucent grey */
429 }
430
431 #actionbuttons .named-wiki:hover,
432 #actionbuttons .wikiaction:hover,
433 #actionbuttons .wikiadmin:hover {
434     text-decoration: underline;
435 }
436
437 #actionbuttons li {
438     display: inline;
439     border: 1px solid #aaaaaa;
440     border-bottom: none;
441     border-collapse: collapse;
442     padding-left: 0.8em;
443     padding-right: 0.8em;
444     margin-right: 10px;
445 }
446
447 /* Smaller for IE6 and IE7: else moves the area down */
448 .ie67 #actionbuttons li {
449     padding-left: 0.2em;
450     padding-right: 0.2em;
451     margin-right: 5px;
452 }
453
454 #actionbuttons li.bold a {
455     font-weight: bold;
456 }
457
458 .editdate {
459     font-family: Verdana, Arial, Helvetica, sans-serif;
460     margin: 0;
461     padding: 0;
462     border-top: 1px #aaaaaa solid;
463 }
464
465 #logo img {
466     float: right;
467     /* "paper" borders */
468     border: 1px solid #e8e6df;
469     border-right-color: #b2b2b2;
470     border-bottom-color: #d2d2d2;
471 }
472
473 /**
474  * Edit Page & View Source
475  */
476
477 /* Make the textarea the full page width */
478 textarea.wikiedit {
479     width: 100%;
480     margin-bottom: 0.5ex;
481     margin-top: 0.5ex;
482     padding: 2px;
483 }
484
485 /* Not for IE6 and IE7: moves the area down */
486 .ie67 textarea.wikiedit {
487     width: auto;
488 }
489
490 #editarea-size {
491     margin-top: 1ex;
492     text-align: right;
493     font-size: smaller;
494 }
495
496 #search-replace {
497     margin-top: 1ex;
498     text-align: left;
499     font-size: smaller;
500 }
501
502 /**
503  * Search Results
504  */
505 .search-context {
506     background: white;
507 }
508
509 .search-term {
510     background: yellow;
511     font-weight: normal;
512 }
513
514 #LSResult {
515     position: absolute;
516     text-align: left;
517     display: none;
518     z-index: 100;
519     background-color: white;
520     border: 1px solid #d0d0d0;
521     font-size: 9px;
522     overflow: hidden;
523 }
524
525 #LSResult .evenrow {
526     background-color: #f0f0f0;
527 }
528
529 /* PageTrail plugin =================================================== */
530
531 .pagetrail {
532     background-color: #FFFF99;
533     padding: 0.2em;
534 }
535
536 /* IncludePage plugin ================================================= */
537
538 .transclusion-title {
539     text-align: right;
540     font-style: oblique;
541     font-size: smaller;
542     text-decoration: underline;
543     margin-bottom: 0.25ex;
544     margin-right: 0.25em;
545 }
546
547 .transclusion, .wiki-edithelp {
548     font-size: smaller;
549 }
550
551 .transclusion {
552     border: 1px solid gray;
553     padding: 0 0.8em;
554     margin-left: 0.25em;
555     margin-right: 0.25em;
556     margin-bottom: 0.1ex;
557 }
558
559 .wiki-edithelp {
560     background: white;
561     border: medium solid #fff8dc; /* darker ivory */
562     padding: 0.75ex 0.5em;
563     margin: 1ex 0;
564 }
565
566 .wiki-edithelp p {
567     font-family: Verdana, Arial, Helvetica, sans-serif;
568     padding: 0.5ex 0.5em;
569     margin: 0;
570 }
571
572 /* Calendar plugin ==================================================== */
573
574 table.cal {
575     border: 1px outset gray;
576     background: white;
577     margin: 0.5ex 0.5em;
578     padding: 1px;
579     /* For Mozilla */
580     empty-cells: hide;
581 }
582
583 /* cells */
584 table.cal td {
585     background: white;
586     text-align: right;
587 }
588
589 /* Month-name header */
590 table.cal-header {
591     font-size: larger;
592 }
593
594 table.cal-header tr, table.cal-header td {
595     text-align: center;
596 }
597
598 .cal-arrow {
599     font-weight: bold;
600     text-decoration: none;
601 }
602
603 /* Day-names header */
604 table.cal tbody tr .cal-dayname {
605 }
606
607 .cal-dayname td {
608     text-align: center;
609     font-size: smaller;
610     text-decoration: underline;
611 }
612
613 /* Individual days */
614 a.cal-hide {
615     text-decoration: none;
616 }
617
618 /* Today */
619 /* cell */
620 table.cal td.cal-today {
621     margin: 1px;
622     border: 1px solid gray;
623 }
624
625 /* text */
626 table.cal td.cal-today a.cal-hide {
627 }
628
629 /* Diff plugin ======================================================== */
630
631 .diff .prefix {
632     position: relative;
633     left: -1em;
634 }
635
636 /* deleted & added words */
637 .diff del, .diff ins {
638     padding-left: 1px;
639     padding-right: 1px;
640 }
641
642 /* main box */
643 .diff {
644     margin-top: 1ex;
645     margin-bottom: 0.5ex;
646     background: white;
647     color: black;
648     border: 1px solid #494f5d;
649     border-right-color: #c6d2de;
650     border-bottom-color: #c6d2de;
651
652     padding: 0;
653     clear: both;
654 }
655
656 .diff .block {
657     background: #ddd;
658     padding-left: 1em;
659 }
660
661 /* individual blocks */
662 .diff .context {
663     background: white;
664     border: none;
665 }
666
667 /* entire difftextblock */
668 .difftext {
669     margin-top: 0;
670     margin-bottom: 0;
671     background: white;
672     border: 1px solid #e8e6df;
673     border-right-color: #b2b2b2;
674     border-bottom-color: #d2d2d2;
675     padding: 0;
676     clear: both;
677 }
678
679 /* + - line prefix */
680 .diff .block tt {
681     font-weight: normal;
682     font-family: monospace;
683     color: black;
684     margin-left: 0;
685     border: none;
686 }
687
688 /* changed words */
689 .diff del, .diff ins {
690     font-weight: bold;
691     text-decoration: none;
692 }
693
694 /* blocks containing deleted or added words */
695 .diff .original, .diff .deleted,
696 .diff .final, .diff .added {
697     background: white;
698 }
699
700 /* blocks containing deleted words */
701 .diff .original, .diff .deleted {
702     background: #fcc;
703     border: none;
704 }
705
706 /* blocks containing added words */
707 .diff .final, .diff .added {
708     background: #cfc;
709     border: none;
710 }
711
712 /* deleted words */
713 .diff del {
714     background: #f99;
715 }
716
717 /* added words */
718 .diff ins {
719     background: #9f9;
720 }
721
722 /* PageInfo plugin ==================================================== */
723
724 td.pageinfo {
725     font-weight: bold;
726 }
727
728 .pageinfo-minoredit, .pageinfo-authorid {
729     font-size: smaller;
730     font-style: oblique;
731 }
732
733 /* Banners ============================================================ */
734
735 p.success, p.feedback, p.warning, p.warning_msg, p.error, p.information,
736 div.success, div.feedback, div.warning, div.warning_msg, div.error, div.information {
737     font-weight: bold;
738     font-size: 12px;
739     text-align: center;
740     border: 1px solid;
741     margin: 15px 0;
742     padding: 10px 10px 10px 10px;
743 }
744
745 .success, .feedback {
746     border-color: green;
747     background-color: #DFF2BF;
748 }
749
750 .warning_msg, .warning {
751     border-color: orange;
752     background-color: #FEEFB3;
753 }
754
755 .error {
756     border-color: red;
757     background-color: #FFBABA;
758 }
759
760 .information {
761     border-color: blue;
762     background-color: #BDE5F8;
763 }
764
765 p.success, p.feedback,
766 p.warning, p.warning_msg,
767 p.error,
768 p.information,
769 div.success, div.feedback,
770 div.warning, div.warning_msg,
771 div.error,
772 div.information {
773     text-align: left;
774     background-repeat: no-repeat;
775     background-position: 10px;
776     -moz-border-radius: 1em;
777     -webkit-border-radius: 1em;
778     border-radius: 1em;
779     padding: 10px 10px 10px 50px;
780 }
781
782 div.success, div.feedback,
783 p.success, p.feedback {
784     color: #4F8A10;
785     background-image: url('/themes/base-alcatel-lucent/images/success.png');
786 }
787
788 div.feedback p, div.feedback li,
789 div.success p, div.success li {
790     color: #4F8A10;
791 }
792
793 div.warning, div.warning_msg,
794 p.warning, p.warning_msg {
795     color: #9F6000;
796     background-image: url('/themes/base-alcatel-lucent/images/warning.png');
797 }
798
799 div.warning p, div.warning_msg p,
800 div.warning li, div.warning_msg li {
801     color: #9F6000;
802 }
803
804 div.error,
805 p.error {
806     color: #D8000C;
807     background-image: url('/themes/base-alcatel-lucent/images/error.png');
808 }
809
810 div.error p,
811 div.error li {
812     color: #D8000C;
813 }
814
815 div.information,
816 p.information {
817     color: #00529B;
818     background-image: url('/themes/base-alcatel-lucent/images/info.png');
819 }
820
821 .error, .warning, .debug, .hint {
822     font-weight: bold;
823     font-size: 11px;
824     text-align: left;
825     border: 1px solid;
826     padding: 0.5em;
827 }
828
829 .debug {
830     background-color: white;
831     border-color: #fff8dc; /* darker ivory */
832 }
833
834 .hint {
835     background-color: #eeeeee;
836     border-color: black;
837 }
838
839 span.error, span.warning, span.debug, span.hint {
840     padding: 0;
841 }
842
843 /* Disabled Plugins  ================================================== */
844
845 .disabled-plugin {
846     clear: both;
847     margin: 1ex 0;
848     padding: 0;
849 }
850
851 .disabled-plugin .title {
852     color: #400;
853     background-color: inherit;
854     font-size: x-small;
855     text-align: right;
856     padding: 0 0.5em;
857 }
858
859 .disabled-plugin pre {
860     color: black;
861     background: #ddd;
862     margin: 0;
863     padding: 0.3ex 0.5em;
864 }
865
866 /* RedirectTo plugin ================================================== */
867
868 /* "(Redirected from ...)" message. */
869 span.redirectfrom {
870     font-size: small;
871     font-style: oblique;
872     font-weight: normal;
873     padding-left: 1em;
874 }
875
876 /*
877  * "DL tables"
878  */
879 .wiki-dl-table {
880     border-collapse: collapse;
881     border: 2px #444 solid;
882 }
883
884 .wiki-dl-table tr {
885     border-top: 2px #444 solid;
886     border-bottom: 2px #444 solid;
887     border-left: none;
888     border-right: none;
889 }
890
891 .wiki-dl-table th,
892 .wiki-dl-table td {
893     padding: 0.25em 0.5em;
894 }
895
896 .wiki-dl-table th {
897     vertical-align: top;
898     text-align: right;
899     border-style: none;
900     border-right: 1px solid #444;
901 }
902
903 .wiki-dl-table td {
904     border: none;
905 }
906
907 /*
908  * "E-mail" style blockquote
909  */
910 blockquote.mail-style-quote {
911     margin: 0;
912     border: 1px solid #284;
913     padding: 0.5em;
914 }
915
916 .mail-style-quote blockquote.mail-style-quote {
917     margin-left: 0.3em;
918     margin-bottom: 0;
919     background-color: transparent;
920     border-style: none;
921     border-left: medium solid #284;
922     padding: 0;
923 }
924
925 /*
926  * wikiblog
927  */
928 .floatleft {
929     float: left;
930 }
931
932 .floatright {
933     float: right;
934 }
935
936 div.wikiblog {
937     margin: 1ex 2em;
938     padding: 0 0;
939 }
940
941 div.wikiblog > div {
942     margin: 0 0;
943     padding: 0.5ex 0.5em;
944 }
945
946 div.wikiblog-header {
947     /* background-color: #ccf; */
948 }
949
950 div.wikiblog > div.wikiblog-footer {
951     /* background-color: #eee; */
952     padding: 0.2ex 0.5em;
953 }
954
955 h3.wikiblog-summary {
956     font-size: medium;
957     font-weight: bold;
958     margin: 0 0 1ex 0;
959 }
960
961 table.wikiblog-form {
962     width: auto;
963     border-collapse: collapse;
964     margin: 0.25em 0;
965 }
966
967 .wikiblog-form caption {
968     caption-side: top;
969     font-weight: bold;
970     text-align: left;
971     padding: 0.5ex 0.5em;
972 }
973
974 .wikiblog-form th {
975     vertical-align: top;
976     text-align: right;
977     padding: 0 0 0.3em 0.5em;
978 }
979
980 .wikiblog-form td {
981     padding: 0.25em 0.5em;
982 }
983
984 .wikiblog-form td.submit-button {
985     padding: 0;
986 }
987
988 .wikiblog-form input[type=text],
989 .wikiblog-form textarea {
990     margin: 0 0;
991     width: 100%;
992 }
993
994 div.wikicomment div.wikicomment-footer {
995     padding: 0.2ex 0.5em;
996 }
997
998 div.wikicomment div.wikicomment-footer named-wiki {
999     font-size: small;
1000 }
1001
1002 table.interwiki-map {
1003     margin: 1em 2em;
1004 }
1005
1006 .interwiki-map th {
1007     text-decoration: underline;
1008     text-align: left;
1009     padding-left: 1em;
1010 }
1011
1012 .interwiki-map td.interwiki-url {
1013     padding-left: 2em;
1014 }
1015
1016 .interwiki-map th.interwiki-url {
1017     padding-left: 3em;
1018 }
1019
1020 .dialog {
1021     background-color: #cdf;
1022     color: black;
1023     margin: 2em auto 2em auto;
1024     border: thin black solid;
1025     width: 50%;
1026 }
1027
1028 .dialog h1, .dialog p, .dialog div {
1029     text-align: center;
1030 }
1031
1032 .dialog h1 {
1033     font-size: large;
1034     margin: 0.5em 0 1em 0;
1035 }
1036
1037 .dialog div.message {
1038     background-color: white;
1039     color: black;
1040     color: black;
1041     margin: 0 1em;
1042     padding: 0.5em 0.5em;
1043 }
1044
1045 .dialog p.buttons {
1046     margin: 1em 0 0.5em 0;
1047 }
1048
1049 .clear-floats {
1050     clear: both;
1051 }
1052
1053 /* postnuke css:*/
1054 .gensmall {
1055     font-size: 10px
1056 }
1057
1058 .genmed {
1059     font-size: 11px
1060 }
1061
1062 td.cat {
1063     font-weight: bold;
1064     letter-spacing: 1px;
1065     color: #000000;
1066     background: url(./images/cellpic1.png);
1067     height: 27px
1068 }
1069
1070 /* Main table cell colours and backgrounds */
1071 td.row1 {
1072     background: #eaedf4;
1073     color: #000000
1074 }
1075
1076 td.row2 {
1077     background: #d9e2ec;
1078     color: #000000
1079 }
1080
1081 td.row3 {
1082     background: #cad9ea;
1083     color: #000000
1084 }
1085
1086 td.spacerow {
1087     background: #cad9ea;
1088     color: #000000
1089 }
1090
1091 /* This is the outline round the main forum tables */
1092 .forumline {
1093     background: #ffffff;
1094     color: #000000;
1095     border: 1px solid #006699
1096 }
1097
1098 /* Sidebar */
1099 .box {
1100     background: #ffffff;
1101     border: 1px solid #888888
1102 }
1103
1104 .box-title {
1105     font-weight: normal;
1106     background-color: #ccc;
1107     color: black;
1108     text-align: center;
1109 }
1110
1111 .box-data {
1112     width: 160px;
1113     font-size: 9pt;
1114     font-weight: normal;
1115 }
1116
1117 .box-data .wiki {
1118     font-weight: normal;
1119 }
1120
1121 td.sidebar {
1122     border-spacing: 0;
1123     margin: 0;
1124 }
1125
1126 /* RssFeed */
1127 div.rss {
1128     margin: 1em;
1129     padding: 1em;
1130 }
1131
1132 div.feed {
1133     margin: -0.5em;
1134     padding: 0.3em;
1135     font-weight: bold;
1136     font-size: 1.2em;
1137 }
1138
1139 .chandesc {
1140     font-weight: bold;
1141 }
1142
1143 div.rssitem {
1144     padding-top: 1em;
1145     padding-bottom: 1em;
1146     border-top: 2px solid #565c5e; /* Alcatel-Lucent grey */
1147 }
1148
1149 div.itemname {
1150     padding-bottom: 1em;
1151     font-weight: bold;
1152 }
1153
1154 div.itemdesc {
1155     padding-left: 1em;
1156 }
1157
1158 div.authordate {
1159     font-style: italic;
1160 }
1161
1162 a.rssicon {
1163     font-weight: normal;
1164     font-size: small;
1165     vertical-align: middle;
1166 }
1167
1168 /* SqlResult */
1169 table.sqlresult {
1170     border: 1px outset gray;
1171     background: white;
1172     margin: 0.5ex 0.5em;
1173     padding: 1px;
1174 }
1175
1176 .sqlresult tr.evenrow {
1177     background: #eee;
1178 }
1179
1180 .sqlresult tr.oddrow {
1181     background: white;
1182 }
1183
1184 table.sqlresult td {
1185     margin: 1px;
1186     border: 1px solid gray;
1187 }
1188
1189 /* TeX2png plugin ===================================================== */
1190
1191 img.tex {
1192     vertical-align: middle;
1193 }
1194
1195 /* PhotoAlbum plugin ================================================== */
1196
1197 .boldsmall {
1198     font-weight: bold;
1199     font-size: 11px;
1200 }
1201
1202 #content {
1203     margin: 0;
1204     padding: 1em 1em 1.5em 1em;
1205     border: 1px solid #aaaaaa;
1206     line-height: 1.2em;
1207     position: relative;
1208     z-index: 2;
1209 }
1210
1211 /* the left column width is specified in class .portlet */
1212
1213 #footer {
1214     text-align: right;
1215     vertical-align: bottom;
1216     font-style: italic;
1217 }
1218
1219 /* WikicreoleTable, MediawikiTable and RichTable plugins ============== */
1220
1221 /*
1222  * table class="boxed"
1223  * will put a border around the table (but not around the cells)
1224  *
1225  * table class="bordered"
1226  * will put a border around the table and the cells
1227  *
1228  * In both cases, the caption will be bold and centered under the table
1229  *
1230  * In both cases, the headers (th) will have a "#d8d8d8" background
1231  */
1232
1233 table.boxed, table.bordered, table.bordered th, table.bordered td {
1234     border: 1px solid;
1235     border-collapse: collapse;
1236     vertical-align: top;
1237 }
1238
1239 table.boxed td, table.bordered td,
1240 table.boxed th, table.bordered th {
1241     padding: 0 5px;
1242 }
1243
1244 table.boxed caption, table.bordered caption {
1245     text-align: center;
1246     font-weight: bold;
1247     caption-side: bottom;
1248     padding-top: 0.8em;
1249 }
1250
1251 table.boxed th, table.bordered th {
1252     font-weight: bold;
1253     background-color: #d8d8d8;
1254 }
1255
1256 /* BoxRight plugin ==================================================== */
1257
1258 div.boxright {
1259     background-color: #e9fbff;
1260     width: 200px;
1261     right: 10px;
1262     float: right;
1263     border: thin solid;
1264     padding: 0.5em;
1265 }
1266
1267 td.tdselected, td.tdunselected {
1268     text-align: center;
1269     font-weight: bold;
1270     padding-left: 5px;
1271     padding-right: 5px;
1272 }
1273
1274 td.tdselected {
1275     color: white;
1276     background-color: #554295;
1277 }
1278
1279 td.tdunselected {
1280     color: black;
1281     background-color: #e9e8de;
1282 }
1283
1284 /* Main wiki browse banner */
1285
1286 .browsebanner {
1287     clear: both;
1288 }
1289
1290 .browsebanner table {
1291     width: 100%;
1292     background-color: #e9fbff;
1293     border: 2px solid blue;
1294 }
1295
1296 .browsebanner table td {
1297     text-align: center;
1298     font-weight: bold;
1299     font-style: oblique;
1300 }
1301
1302 /* RateIt plugin ====================================================== */
1303
1304 .rateit {
1305     font-size: 60%;
1306     font-weight: bold;
1307     vertical-align: middle;
1308 }
1309
1310 /* For emacs users
1311  *
1312  * Local Variables:
1313  * mode: c
1314  * c-file-style: cc-mode
1315  * End:
1316  */