]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Wordpress/Wordpress.css
Use CSS
[SourceForge/phpwiki.git] / themes / Wordpress / Wordpress.css
1 /**
2  * PhpWiki's Wordpress style sheet contributed by Mike Pickering
3  */
4
5 /*
6     Blue-Fade Theme
7     Modified 2004-01-20 by Alex King (http://www.alexking.org/)
8
9     based on:
10     Default WordPress by Dave Shea || http://mezzoblue.com
11     Modifications by Matthew Mullenweg || http://photomatt.net
12     This is just a basic layout, with only the bare minimum defined.
13     Please tweak this and make it your own. :)
14 */
15
16 /* generic classes ----------------------------------------------- */
17
18 .tt {
19     font-family: monospace;
20 }
21
22 .strike {
23     text-decoration: line-through;
24 }
25
26 .align-left {
27     text-align: left;
28 }
29
30 .align-right {
31     text-align: right;
32 }
33
34 .align-center {
35     text-align: center;
36 }
37
38 .top {
39     vertical-align: top;
40 }
41
42 .bottom {
43     vertical-align: bottom;
44 }
45
46 .middle {
47     vertical-align: middle;
48 }
49
50 .baseline {
51     vertical-align: baseline;
52 }
53
54 .nowrap {
55     white-space: nowrap;
56 }
57
58 .fullwidth {
59     width: 100%;
60 }
61
62 /* --------------------------------------------------------------- */
63
64 /* This stuff was copied straight out of portland.css */
65
66 body {
67     color: black;
68     background: white;
69 }
70
71 img {
72     border: 0;
73 }
74
75 .wiki-edithelp {
76     font-size: smaller;
77 }
78
79 input.numeric {
80     text-align: right;
81 }
82
83 /* Mozilla RecentChanges Sidebar */
84 body.sidebar {
85     font-size: smaller;
86     margin: 0.5em;
87 }
88
89 body.sidebar div.wikitext ul {
90     padding-left: 1em;
91 }
92
93 body.sidebar h2 {
94     margin-top: 0;
95 }
96
97 /* End of stuff copied from portland.css */
98
99 /* This stuff was added to get the "look" right, and wasn't part of the
100  * goal to match WordPress.  If you're changing the WordPress styles, these
101  * items don't have a WordPress equivalent, so you might be able to leave them
102  * as-is.  */
103
104 .wikitext .wiki, .wikitext .named-wiki {
105     font-weight: bold;
106 }
107
108 .wikitext {
109     margin: 30px 13em 0 3em;
110     padding-right: 20px;
111 }
112
113 .cal-hide {
114     color: #999;
115 }
116
117 .cal-hide, .cal-day a {
118     font-size: smaller;
119 }
120
121 .cal-day a, .cal-hide a {
122     font-weight: bold;
123 }
124
125 hr {
126     border-bottom: 1px dotted #ccc;
127     height: 0;
128 }
129
130 /* End of stuff added for "look" */
131
132 /* This was copied (nearly verbatim) from a WordPress style.css */
133
134 body {
135     background: #fff url(images/content-background.png) repeat-x;
136     font-family: Verdana, Geneva, sans-serif;
137     margin: 0;
138     padding: 0;
139     color: black;
140 }
141
142 a {
143     color: #036;
144     text-decoration: none; /* This was added */
145 }
146
147 a:visited {
148     color: #369;
149 }
150
151 a:hover {
152     color: #69c;
153 }
154
155 #header {
156     background: #036 url(images/header-background.png) repeat-x;
157     border-bottom: 1px solid #69c;
158     font: italic normal 230% 'Times New Roman', Times, serif;
159     letter-spacing: 0.2em;
160     margin: 0;
161     padding: 15px 10px 15px 30px;
162     color: #69c; /* added for subpage headings */
163 }
164
165 #header a {
166     color: #fff;
167     text-decoration: none;
168 }
169
170 #header a:hover {
171     text-decoration: underline;
172 }
173
174 /* End of stuff copied (almost) verbatim */
175
176 /* The remainder of this file contains things that "sort-of" had equivalents
177  * between WordPress and PhpWiki.  See comments for specifics.  */
178
179 /* All PhpWiki #actionbar items are from WordPress #menu items */
180 #actionbar {
181     background: #e8e8e8 url(images/menu-background.png) repeat-x;
182     border-left: 1px solid #9cf;
183     border-bottom: 1px solid #9cf;
184     padding: 30px 0 20px 20px;
185     position: absolute;
186     right: 0;
187     top: 0;
188     width: 11em;
189 }
190
191 #actionbar form {
192     margin: 0;
193 }
194
195 #actionbar input {
196     width: 80%;
197 }
198
199 /* Genericize it a little for other input fields */
200 input {
201     background: #fff;
202     border: 1px solid #999;
203     /*        width: 80%; */
204     font-size: smaller;
205 }
206
207 #actionbar ul {
208     color: #369;
209     font-weight: bold;
210     list-style-type: none;
211     margin: 0;
212     padding-left: 3px;
213 }
214
215 #actionbar ul li {
216     font: italic normal 100% 'Times New Roman', Times, serif;
217     letter-spacing: 0.1em;
218     margin-top: 10px;
219     padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
220 }
221
222 #actionbar ul ul {
223     list-style-type: none;
224     font-variant: normal;
225     font-weight: normal;
226     line-height: 100%;
227     margin: 0;
228     padding: 0;
229     text-align: left;
230 }
231
232 #actionbar ul ul li {
233     border: 0;
234     font: normal 70% Verdana, sans-serif;
235     letter-spacing: 0;
236     margin-top: 0;
237     padding: 0 0 1px 12px;
238 }
239
240 #actionbar ul ul li a {
241     color: #036;
242     text-decoration: none;
243 }
244
245 #actionbar ul ul li a:hover {
246     border-bottom: 1px solid #69c;
247 }
248
249 /* All PhpWiki .cal items are from WordPress #wp-calendar items */
250 .cal {
251     background: #fff;
252     border: 1px solid #ddd;
253     empty-cells: show;
254     /*        font-size: 14px; */
255     margin: 0 0 0 -5px;
256     /*        width: 90%; */
257 }
258
259 .cal a {
260     /* display: block; */
261     text-decoration: none;
262     font-style: normal;
263 }
264
265 .cal a:hover {
266     background: #e8e8e8;
267     color: #333;
268 }
269
270 .cal-header, .cal-dayname td {
271     color: #999;
272     /*        font: normal 11px Verdana, Geneva, sans-serif; */
273     padding: 1px 1px;
274     /*        text-align: right; */
275 }
276
277 /* from wp-calendar th  (with changes) */
278 .cal-dayname td {
279     font-size: smaller;
280     color: #69c;
281 }
282
283 .cal td.pad:hover {
284     background: #fff;
285 }
286
287 .cal td:hover, .cal-today {
288     background: #e8e8e8;
289     color: #666;
290 }
291
292 /* from #wp-calendar th */
293 .cal-header {
294     color: #69c;
295     font-style: normal;
296     text-transform: capitalize;
297 }
298
299 th.gridbutton {
300     background: #e8e8e8 url(images/menu-background.png) repeat-x;
301     color: black;
302     font-family: Tahoma, Arial, Helvetica, sans-serif;
303     font-size: small;
304     font-weight: normal;
305     margin: 5px 0;
306     max-height: 24px;
307     white-space: nowrap;
308     padding: 5px 0 5px 0;
309     border-width: 1px;
310     border-style: solid;
311     border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;
312 }
313
314 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
315     text-decoration: none;
316     font-size: small;
317     font-weight: normal;
318     font-family: Tahoma, Arial, Helvetica, sans-serif;
319     color: black;
320 }
321
322 .wikipaging {
323     font-size: x-small;
324 }
325
326 .toolbar {
327     padding: 0;
328     margin: 0;
329 }
330
331 .edit-toolbar {
332     padding: 0;
333     margin: 0;
334 }
335
336 .edit-toolbar img, .edit-toolbar input {
337     background-color: #fff;
338     border: 1px solid ButtonFace;
339 }
340
341 #editarea-size {
342     margin-top: 1ex;
343     text-align: right;
344     font-size: smaller;
345 }
346
347 #search-replace {
348     margin-top: 1ex;
349     text-align: left;
350     font-size: smaller;
351 }
352
353 #toolbar {
354     padding: 0;
355 }
356
357 /**
358  * Search Results
359  */
360 .search-context {
361     background: white;
362     font-style: oblique;
363 }
364
365 .search-term {
366     background: yellow;
367     font-weight: normal;
368 }
369
370 #LSResult {
371     position: absolute;
372     text-align: left;
373     display: none;
374     z-index: 100;
375     background-color: white;
376     border: 1px solid #d0d0d0;
377     font-size: 9px;
378     overflow: hidden;
379 }
380
381 #LSHighlight {
382     background-color: #f08000;
383 }
384
385 #LSResult .evenrow {
386     background-color: #f0f0f0;
387 }
388
389 /* IncludePage plugin ================================================= */
390
391 .transclusion-title {
392     text-align: right;
393     font-style: oblique;
394     font-size: smaller;
395     text-decoration: underline;
396     margin-bottom: 0.25ex;
397     margin-right: 0.25em;
398 }
399
400 .transclusion, .wiki-edithelp {
401     font-size: smaller;
402 }
403
404 .transclusion {
405     border: 1px solid gray;
406     padding-left: 0.8em;
407     padding-right: 0.8em;
408     padding-top: 0;
409     padding-bottom: 0;
410     margin-left: 0.25em;
411     margin-right: 0.25em;
412     margin-bottom: 0.1ex;
413 }
414
415 .wiki-edithelp {
416     background: white;
417     border: medium solid #fff8dc; /* darker ivory */
418     padding-left: 0.5em;
419     padding-right: 0.5em;
420     padding-top: 0.75ex;
421     padding-bottom: 0.75ex;
422     margin-left: 0;
423     margin-right: 0;
424     margin-top: 1ex;
425     margin-bottom: 1ex;
426 }
427
428 .wiki-edithelp .wiki {
429     /* color: #5454ff;*/
430 }
431
432 .wiki-edithelp p {
433     font-family: Arial, Helvetica, sans-serif;
434     padding-left: 0.5em;
435     padding-right: 0.5em;
436     padding-top: 0.5ex;
437     padding-bottom: 0.5ex;
438     margin: 0;
439 }
440
441 /**
442  * Calendar plugin
443  */
444 table.cal {
445     border: 1px outset gray;
446     background: white;
447     margin: 0.5ex 0.5em;
448     padding: 1px;
449     /* For Mozilla */
450     empty-cells: hide;
451 }
452
453 /* cells */
454 table.cal td {
455     background: white;
456     text-align: right;
457 }
458
459 /* Month-name header */
460 table.cal-header {
461     font-size: larger;
462 }
463
464 table.cal-header tr, table.cal-header td {
465     text-align: center;
466 }
467
468 .cal-arrow {
469     font-weight: bold;
470     text-decoration: none;
471 }
472
473 /* Day-names header */
474 table.cal tbody tr .cal-dayname {
475 }
476
477 .cal-dayname td {
478     text-align: center;
479     font-size: smaller;
480     text-decoration: underline;
481 }
482
483 /* Individual days */
484 a.cal-hide {
485     text-decoration: none;
486 }
487
488 /* Today */
489 /* cell */
490 table.cal td.cal-today {
491     margin: 1px;
492     border: 1px solid gray;
493 }
494
495 /* text */
496 table.cal td.cal-today a.cal-hide {
497 }
498
499 /**
500  * Diff Output
501  */
502 /* main box */
503 .diff {
504     margin-top: 1ex;
505     margin-bottom: 0.5ex;
506     background: white;
507     color: black;
508     border-top: 1px solid #494f5d;
509     border-left: 1px solid #494f5d;
510     border-bottom: 1px solid #c6d2de;
511     border-right: 1px solid #c6d2de;
512     padding-top: 1px;
513     padding-bottom: 1px;
514     padding-left: .125em;
515     padding-right: .125em;
516     padding: 0;
517     clear: both;
518 }
519
520 .diff .block {
521     background: #ddd;
522     padding-left: 1em;
523 }
524
525 /* individual blocks */
526 .diff .context {
527     background: white;
528     border: none;
529 }
530
531 /* entire difftextblock */
532 .difftext {
533     margin-top: 0;
534     margin-bottom: 0;
535     background: white;
536     /* "paper" borders */
537     border-top: 1px #e8e6df solid;
538     border-left: 1px #e8e6df solid;
539     border-bottom: 1px #d2d2d2 solid;
540     border-right: 1px #b2b2b2 solid;
541     padding-left: 0;
542     padding-right: 0;
543     padding-top: 0;
544     padding-bottom: 0;
545     clear: both;
546 }
547
548 /* + - line prefix */
549 .diff .block tt {
550     font-weight: normal;
551     font-family: monospace;
552     color: black;
553     margin-left: 0;
554     border: none;
555 }
556
557 /* changed words */
558 .diff del, .diff ins {
559     font-weight: bold;
560     text-decoration: none;
561 }
562
563 /* blocks containing deleted or added words */
564 .diff .original, .diff .deleted,
565 .diff .final, .diff .added {
566     background: white;
567 }
568
569 /* blocks containing deleted words */
570 .diff .original, .diff .deleted {
571     background: #fcc;
572     border: none;
573 }
574
575 /* blocks containing added words */
576 .diff .final, .diff .added {
577     background: #cfc;
578     border: none;
579 }
580
581 /* deleted words */
582 .diff del {
583     background: #f99;
584 }
585
586 /* added words */
587 .diff ins {
588     background: #9f9;
589 }
590
591 /**
592  * PageHistory, Info
593  */
594 td.pageinfo {
595     font-weight: bold;
596 }
597
598 .pageinfo-minoredit, .pageinfo-authorid {
599     font-size: smaller;
600     font-style: oblique;
601 }
602
603 /**
604  * Other
605  */
606 .printer, .no-css {
607     display: none;
608 }
609
610 .error {
611     color: black;
612     background: #eee;
613     margin-top: 1em;
614     margin-bottom: 1em;
615     padding-left: 0.8em;
616     padding-right: 0.8em;
617     padding-top: 0.8ex;
618     padding-bottom: 0;
619     border: medium solid red;
620     clear: both;
621 }
622
623 .warning {
624     color: black;
625     background: #eee;
626     margin-top: 1em;
627     margin-bottom: 1em;
628     padding-left: 0.8em;
629     padding-right: 0.8em;
630     padding-top: 0.8ex;
631     padding-bottom: 0;
632     border: thin solid blue;
633     clear: both;
634 }
635
636 /* Debug */
637 .debug {
638     color: black;
639     background: white;
640     font-family: monospace;
641     font-size: smaller;
642     margin: 1ex 0;
643     padding: 0.5ex 0.5em;
644     border: medium solid #fff8dc; /* darker ivory */
645 }
646
647 /* Hints */
648 .hint {
649     color: black;
650     background: #eeeeee;
651     font-style: italic;
652     margin-left: 3em;
653     padding: 0.5ex 0.5em;
654     border: thin solid #aaaaaa;
655 }
656
657 span.hint {
658     padding: 0;
659 }
660
661 /* Disabled Plugins */
662 .disabled-plugin {
663     clear: both;
664     margin: 1ex 0;
665     padding: 0;
666 }
667
668 .disabled-plugin .title {
669     color: #400;
670     background-color: inherit;
671     font-size: x-small;
672     text-align: right;
673     padding: 0 0.5em;
674 }
675
676 .disabled-plugin pre {
677     color: black;
678     background: #ddd;
679     margin: 0;
680     padding: 0.3ex 0.5em;
681 }
682
683 /* "(Redirected from ...)" message. */
684 span.redirectfrom {
685     font-size: small;
686     font-style: oblique;
687     font-weight: normal;
688     padding-left: 1em;
689 }
690
691 /*
692  * "DL tables"
693  */
694 .wiki-dl-table {
695     border-collapse: collapse;
696     border: 2px #444 solid;
697 }
698
699 .wiki-dl-table tr {
700     border-top: 2px #444 solid;
701     border-bottom: 2px #444 solid;
702     border-left: none;
703     border-right: none;
704 }
705
706 .wiki-dl-table th,
707 .wiki-dl-table td {
708     padding: 0.25em 0.5em;
709 }
710
711 .wiki-dl-table th {
712     vertical-align: top;
713     text-align: right;
714     border-right: 1px #444 solid;
715     border-left: none;
716     border-top: none;
717     border-bottom: none;
718 }
719
720 .wiki-dl-table td {
721     border: none;
722 }
723
724 /*
725  * "E-mail" style blockquote
726  */
727 blockquote.mail-style-quote {
728     border-left: medium #284 solid;
729     padding-left: 1em;
730     margin-left: 0;
731     margin-right: 0;
732 }
733
734 .mail-style-quote blockquote.mail-style-quote {
735     margin-left: -0.6em;
736 }
737
738 /*
739  * wikiblog
740  */
741 .floatleft {
742     float: left;
743 }
744
745 .floatright {
746     float: right;
747 }
748
749 div.wikiblog {
750     /* border: thin black solid; */
751     margin: 1ex 2em;
752     padding: 0 0;
753 }
754
755 div.wikiblog > div {
756     margin: 0 0;
757     padding: 0.5ex 0.5em;
758 }
759
760 div.wikiblog-header {
761     /* background-color: #ccf; */
762 }
763
764 div.wikiblog > div.wikiblog-footer {
765     /* background-color: #eee; */
766     padding: 0.2ex 0.5em;
767 }
768
769 h3.wikiblog-summary {
770     font-size: medium;
771     font-weight: bold;
772     margin: 0 0 1ex 0;
773 }
774
775 div.wikiblog.wikiblog-form {
776     /* background-color: #eee; */
777 }
778
779 table.wikiblog-form {
780     width: auto;
781     border-collapse: collapse;
782     margin: 0.25em 0;
783 }
784
785 .wikiblog-form caption {
786     /* background-color: #ccf; */
787     caption-side: top;
788     font-weight: bold;
789     text-align: left;
790     padding: 0.5ex 0.5em;
791 }
792
793 .wikiblog-form th {
794     vertical-align: top;
795     text-align: right;
796     padding: 0 0 0.3em 0.5em;
797 }
798
799 .wikiblog-form td {
800     padding: 0.25em 0.5em;
801 }
802
803 .wikiblog-form td.submit-button {
804     padding: 0;
805 }
806
807 .wikiblog-form input[type=text],
808 .wikiblog-form textarea {
809     margin: 0 0;
810     width: 100%;
811 }
812
813 div.wikicomment div.wikicomment-footer {
814     padding: 0.2ex 0.5em;
815 }
816
817 div.wikicomment div.wikicomment-footer named-wiki {
818     font-size: small;
819 }
820
821 table.interwiki-map {
822     margin: 1em 2em;
823 }
824
825 .interwiki-map th {
826     text-decoration: underline;
827     text-align: left;
828     padding-left: 1em;
829 }
830
831 .interwiki-map td.interwiki-url {
832     padding-left: 2em;
833 }
834
835 .interwiki-map th.interwiki-url {
836     padding-left: 3em;
837 }
838
839 .dialog {
840     background-color: #cdf;
841     color: black;
842     margin: 2em auto 2em auto;
843     border: thin black solid;
844     width: 50%;
845 }
846
847 .dialog h1, .dialog p, .dialog div {
848     text-align: center;
849 }
850
851 .dialog h1 {
852     font-size: large;
853     margin: 0.5em 0 1em 0;
854 }
855
856 .dialog div.message {
857     background-color: white;
858     color: black;
859     color: black;
860     margin: 0 1em;
861     padding: 0.5em 0.5em;
862 }
863
864 .dialog p.buttons {
865     margin: 1em 0 0.5em 0;
866 }
867
868 .clear-floats {
869     clear: both;
870 }
871
872 /* postnuke css:*/
873 .gensmall {
874     font-size: 10px
875 }
876
877 .genmed {
878     font-size: 11px
879 }
880
881 td.cat {
882     font-weight: bold;
883     letter-spacing: 1px;
884     color: #000000;
885     background: url(./images/cellpic1.png);
886     height: 27px
887 }
888
889 /* Main table cell colours and backgrounds */
890 td.row1 {
891     background: #eaedf4;
892     color: #000000
893 }
894
895 td.row2 {
896     background: #d9e2ec;
897     color: #000000
898 }
899
900 td.row3 {
901     background: #cad9ea;
902     color: #000000
903 }
904
905 td.spacerow {
906     background: #cad9ea;
907     color: #000000
908 }
909
910 /* This is the outline round the main forum tables */
911 .forumline {
912     background: #ffffff;
913     color: #000000;
914     border: 1px solid #006699
915 }
916
917 /* Sidebar */
918 .box {
919     background: #ffffff;
920     border: 1px solid silver
921 }
922
923 .box-title {
924     font-family: Tahoma, Arial, Helvetica, sans-serif;
925     font-weight: normal;
926     background-color: #ccc;
927     color: black;
928     text-align: center;
929     border: none;
930     padding: 2px 0 2px 0;
931 }
932
933 .box-data {
934     width: 160px;
935     font-size: 9pt;
936     font-weight: normal;
937     border: none;
938 }
939
940 .box-data .wiki {
941     font-weight: normal;
942 }
943
944 td.sidebar {
945     border-spacing: 0;
946     margin: 0;
947 }
948
949 /* plugin BoxRight */
950 div.boxright {
951     background-color: #e9fbff;
952     width: 200px;
953     right: 10px;
954     padding: 0.5em;
955     float: right;
956     border: thin solid #888888;
957     padding: 0.5em;
958 }
959
960 /* RssFeed */
961 div.rss {
962     margin: 1em;
963     padding: 1em;
964     font-size: 0.9em;
965     background-color: #eeeeee;
966     border: thin dashed #aaa;
967 }
968
969 div.feed {
970     color: #333;
971     margin: -0.5em;
972     margin-bottom: 0;
973     padding: 0.3em;
974     font-weight: bold;
975     background-color: #f2f2f2;
976     font-size: 1.2em;
977 }
978
979 div.itemdesc {
980     padding-left: 1em;
981 }
982
983 div.rssitem {
984     border-top: thin dashed #aaa;
985 }
986
987 /* SqlResult */
988 table.sqlresult {
989     border: 1px outset gray;
990     background: white;
991     margin: 0.5ex 0.5em;
992     padding: 1px;
993 }
994
995 .sqlresult tr.evenrow {
996     background: #eee;
997 }
998
999 .sqlresult tr.oddrow {
1000     background: white;
1001 }
1002
1003 table.sqlresult td {
1004     margin: 1px;
1005     border: 1px solid gray;
1006 }
1007
1008 /**
1009  * TeX2png plugin
1010  */
1011 img.tex {
1012     vertical-align: middle;
1013 }
1014
1015 /**
1016  * PhotoAlbum plugin
1017  */
1018 .boldsmall {
1019     font-weight: bold;
1020     font-size: 11px;
1021 }
1022
1023 .wikiwyg_toolbar {
1024     background: #D3D3D3;
1025     border: 1px outset;
1026     letter-spacing: 0;
1027     padding: 2px;
1028 }
1029
1030 span.wikiwyg_control_link a {
1031     padding-right: 8px;
1032 }
1033
1034 .wikiwyg_button {
1035     background: #D3D3D3;
1036     border: 1px solid #D3D3D3;
1037     cursor: pointer;
1038     width: 20px;
1039     height: 20px;
1040     vertical-align: bottom;
1041 }
1042
1043 .wikiwyg_button:hover {
1044     border: 1px outset;
1045 }
1046
1047 .wikiwyg_button:active {
1048     border: 1px inset;
1049 }
1050
1051 .wikiwyg_separator {
1052     background: #D3D3D3;
1053     border: 1px solid #D3D3D3;
1054     width: 9px;
1055     height: 20px;
1056     vertical-align: bottom;
1057 }
1058
1059 .wikiwyg_selector {
1060     width: 70px;
1061 }
1062
1063 .wikiwyg_wysiwyg table {
1064     border-collapse: collapse;
1065     margin-bottom: .2em;
1066 }
1067
1068 .wikiwyg_wysiwyg table td {
1069     border: 1px;
1070     border-style: solid;
1071     padding: .2em;
1072     vertical-align: top;
1073 }
1074
1075 /* WikicreoleTable, MediawikiTable and RichTable plugins ============== */
1076
1077 /*
1078  * table class="boxed"
1079  * will put a border around the table (but not around the cells)
1080  *
1081  * table class="bordered"
1082  * will put a border around the table and the cells
1083  *
1084  * In both cases, the caption will be bold and centered under the table
1085  *
1086  * In both cases, the headers (th) will have a "#d8d8d8" background
1087  */
1088
1089 table.boxed, table.bordered, table.bordered th, table.bordered td {
1090     border-width: 1px;
1091     border-style: solid;
1092     border-collapse: collapse;
1093     vertical-align: top;
1094 }
1095
1096 table.boxed td, table.bordered td,
1097 table.boxed th, table.bordered th {
1098     padding-left: 5px;
1099     padding-right: 5px;
1100     padding-top: 0;
1101     padding-bottom: 0;
1102 }
1103
1104 table.boxed caption, table.bordered caption {
1105     text-align: center;
1106     font-weight: bold;
1107     caption-side: bottom;
1108     padding-top: 0.8em;
1109 }
1110
1111 table.boxed th, table.bordered th {
1112     font-weight: bold;
1113     background-color: #d8d8d8;
1114 }
1115
1116 /* For emacs users
1117  *
1118  * Local Variables:
1119  * mode: c
1120  * c-file-style: cc-mode
1121  * End:
1122  */