* Fix the htmltidy plugin, which wasn't working due my breaking it when
[ikiwiki] / basewiki / style.css
1 .header {
2         margin: 0;
3         font-size: 22px;
4         font-weight: bold;
5         line-height: 1em;
6 }
7
8 .author {
9         margin: 0;
10         font-size: 18px;
11         font-weight: bold;
12         display: block;
13 }
14
15 #actions ul {
16         margin: 0;
17         padding: 6px;
18         list-style-type: none;
19         border-bottom: 1px solid #000;
20 }
21
22 #actions li {
23         display: inline;
24         padding: .2em .4em;
25 }
26
27 #searchform {
28         display: inline;
29         float: right;
30 }
31
32 #content {
33         border-bottom: 1px solid #000;
34 }
35
36 #editcontent {
37         width: 100%;
38 }      
39
40 /* Stuff for the RecentChanges table. */
41 tr.changeheader {
42         background: #eee;
43         color: black !important;
44 }
45 tr.changeinfo {
46         background: #eee;
47         color: black !important;
48 }
49 th.changeheader {
50         padding: 1px .3em;
51 }
52 td.changeinfo { 
53         padding: 1px .3em;
54 }
55 td.changetime {
56         white-space: nowrap;
57         padding: 1px .3em;
58 }
59 td.changelog {
60         font-style: italic;
61 }
62
63 /* Used for adding a blog page. */
64 #blogform {
65         padding: 10px 10px;
66         border: 1px solid #aaa;
67         background: #eee;
68         color: black !important;
69 }
70
71 .inlinepage {
72         padding: 10px 10px;
73         border: 1px solid #aaa;
74 }
75
76 #backlinks {
77         margin: 1em 0;
78 }
79
80 #footer {
81         margin: 1em 0;
82 }
83
84 .pageinfo {
85         font-style: italic;
86         display: block;
87 }
88
89 /* Used for invalid form fields. */
90 .fb_invalid {
91         color: red;
92         background: white !important;
93 }
94
95 /* Used for required form fields. */
96 .fb_required {
97         font-weight: bold;
98 }
99
100 /* RSS button. */
101 .rssbutton {
102         background: #ff6600;
103         color: white !important;
104         border-left: 1px solid #cc9966;
105         border-top: 1px solid #ccaa99;
106         border-right: 1px solid #993300;
107         border-bottom: 1px solid #331100;
108         padding: 0px 0.5em 0px 0.5em;
109         font-family: helvetica, arial, sans-serif;
110         font-weight: bold;
111         font-size: small;
112         text-decoration: none;
113         margin-top: 1em;
114 }
115 .rssbutton:hover {
116         color: white !important;
117         background: #ff9900;
118 }
119
120 /* Tag cloud. */
121 .pagecloud {
122         float: right;
123         width: 30%;
124         text-align: center;
125 }
126 .smallestPC { font-size: 70%; }
127 .smallPC { font-size: 85%; }
128 .normalPC { font-size: 100%; }
129 .bigPC { font-size: 115%; }
130 .biggestPC { font-size: 130%; }