Do not justify text in headings and tables.
[wiki] / web.css
1 body {
2         background: white;
3         color: black;
4         font-family: sans-serif;
5         font-size: 14px;
6         max-width: 1000px;
7         margin-left: auto;
8         margin-right: auto;
9         text-align: justify;
10 }
11
12 .header {
13         margin: 0;
14         padding: 0;
15 }
16
17 .actions {
18         margin: 0;
19         padding: 0;
20 }
21
22 .actions ul {
23         margin: 0;
24         padding-left: 0;
25         padding-bottom: .5em;
26         list-style-type: none;
27         text-align: right;
28 }
29
30 .pageheader .actions ul {
31         color: gray;
32         border-bottom: 1px solid black;
33 }
34
35
36 .header {
37         display: none;
38 }
39
40 .actions li {
41         display: inline;
42         padding: .2em .4em;
43 }
44
45 .searchform {
46         display: inline;
47 }
48
49 .searchform form {
50         display: inline;
51 }
52
53 input#searchbox {
54         background: url(wikiicons/search-bg.gif) no-repeat;
55         background-position: 100% 50%;
56         padding: 0;
57         padding-right: 1.2em;
58         width: 10em;
59 }
60
61 .pagefooter {
62         color: gray;
63         border-top: 1px solid black;
64         clear: both;
65         padding-top: .5em;
66         text-align: right;
67 }
68
69 #poweredby {
70         float: left;
71         width: 40%;
72         text-align: left;
73 }
74
75 h1, h2, h3, h4, h5 {
76         text-align: left;
77 }
78
79 table {
80         border: 1px solid;
81         border-collapse: collapse;
82         text-align: left;
83 }
84
85 td {
86         border: 1px solid;
87         padding: 4px;
88 }
89
90 th {
91         border: 1px solid;
92         padding: 4px;
93 }
94
95 .inlinefooter {
96         clear: both;
97 }
98
99 #content {
100         padding-top: 1em;
101         padding-bottom: 1em;
102         padding-right: 1em;
103 }
104
105 #content > :first-child {
106         margin-top: 0;
107 }
108
109 #backlinks {
110         display: none;
111 }
112
113 #feedlink {
114         float: right;
115         width: 9em;
116         text-align: right;
117 }
118
119 .feedbutton {
120         background: #ff6600;
121         color: white !important;
122         border-left: 1px solid #cc9966;
123         border-top: 1px solid #ccaa99;
124         border-right: 1px solid #993300;
125         border-bottom: 1px solid #331100;
126         padding: 0px 0.5em 0px 0.5em;
127         font-family: sans-serif;
128         font-weight: bold;
129         font-size: small;
130         text-decoration: none;
131         margin-top: 1em;
132 }
133
134 .feedbutton:hover {
135         color: white !important;
136         background: #ff9900;
137 }
138
139 img {
140         border: 0;
141 }