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