]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/portland.css
Fix CSS list vertical spacing.
[SourceForge/phpwiki.git] / themes / Portland / portland.css
1 /**
2  * $Id: portland.css,v 1.12 2003-04-01 17:55:18 dairiki Exp $
3  *
4  * PhpWiki's Portland style sheet based on the original Wiki
5  *
6  * Styles are kept to a minimum, so the page will mostly appear
7  * according to the browser's default font settings.
8  */
9 body {
10   color : black;
11   background : white;
12 }
13
14 img {
15   border : 0 none;
16 }
17
18 .wiki-edithelp {
19   font-size : smaller;
20 }
21
22 input.numeric {
23   text-align: right;
24 }
25
26 .clear-floats {
27   clear: both;
28 }
29
30 /*
31  * Vertical margins around block elements.
32  */
33
34 p { margin: 1em 0; }            /* Normal ("loose") paragraphs */
35 li p, dd p, td p { margin: 1ex 0; } /* Paragraphs within lists are a little tighter. */
36   
37 /* ul, ol, dl { margin: 0.2ex 0; }      /* A little room around lists. */
38 /* li ul, li ol, li dl,
39 dd ul, dd ol, dd dl { margin: 0 0; } /* but not around sub-lists. */
40
41 /* Normal ("loose") list elements */
42 li.tightenable { margin: 1em 0; }
43 dt.tightenable { margin-top: 1em; }
44 dd.tightenable { margin-bottom: 1.5ex; }
45
46   
47 li.tightenable.top,
48 dt.tightenable.top,
49 dd.tightenable.top {
50   margin-top: 0.2ex;
51 }
52 li li.tightenable.top {
53   margin-top: 0;
54 }
55 li.tightenable.bottom,
56 dd.tightenable.bottom {
57   margin-bottom: 0.2ex;
58 }
59 li li.tightenable.bottom {
60   margin-bottom: 0;
61 }
62
63 .tightenable.top {
64   margin-top: 0;
65 }
66 .tightenable.bottom {
67   margin-bottom: 0;
68 }
69
70 /*
71  * "DL tables"
72  */
73 .wiki-dl-table {
74   border-collapse: collapse;
75   border: 2px #444 solid;
76 }
77 .wiki-dl-table tr {
78   border-top: 2px #444 solid;
79   border-bottom: 2px #444 solid;
80   border-left: none; 
81   border-right: none; 
82 }
83 .wiki-dl-table tr.tightenable.top {
84   border-top: 1px #444 solid;
85 }
86 .wiki-dl-table tr.tightenable.bottom {
87   border-bottom: 1px #444 solid;
88 }
89 .wiki-dl-table th,
90 .wiki-dl-table td {
91   padding: 0.25em 0.5em;
92 }
93 .wiki-dl-table th {
94   vertical-align: top;
95   text-align: right;
96   border-right: 1px #444 solid;
97   border-left: none;
98   border-top: none;
99   border-bottom: none;
100 }
101 .wiki-dl-table td {
102   border: none;
103 }
104
105 /* Mozilla RecentChanges Sidebar */
106 body.sidebar {
107   font-size: smaller;
108   margin: 0.5em;
109 }
110 body.sidebar div.wikitext ul { padding-left: 1em; }
111 body.sidebar h2 { margin-top: 0; }
112