* Make RecentChanges use a table and some CSS, should be much more readable.
[ikiwiki] / basewiki / style.css
1 .header {
2         margin: 0;
3         font-size: 22px;
4         font-weight: bold;
5         line-height: 1em;
6 }
7
8 #actions ul {
9         margin: 0;
10         padding: 6px;
11         list-style-type: none;
12         border-bottom: 1px solid #000;
13 }
14
15 #actions li {
16         display: inline;
17         padding: .2em .4em;
18 }
19
20 #searchform {
21         display: inline;
22         float: right;
23 }
24
25 #content {
26         border-bottom: 1px solid #000;
27 }
28
29 #editcontent {
30         width: 100%;
31 }      
32
33 /* Stuff for the RecentChanges table. */
34 .changeheader {
35         background: #eee;
36         color: black !important;
37 }
38 .changetime {
39         white-space: nowrap;
40 }
41
42 /* Used for adding a blog page. */
43 #blogform {
44         padding: 10px 10px;
45         border: 1px solid #aaa;
46         background: #eee;
47         color: black !important;
48 }
49
50 .inlinepage {
51         padding: 10px 10px;
52         border: 1px solid #aaa;
53 }
54
55 #backlinks {
56         margin: 1em 0;
57 }
58
59 #footer {
60         margin: 1em 0;
61 }
62
63 #pageinfo {
64         font-style: italic;
65 }
66
67 /* Used for invalid form fields. */
68 .fb_invalid {
69         color: red;
70         background: white !important;
71 }
72
73 /* Used for required form fields. */
74 .fb_required {
75         font-weight: bold;
76 }
77
78 /* RSS button. */
79 .rssbutton {
80         background: #ff6600;
81         color: white !important;
82         border-left: 1px solid #cc9966;
83         border-top: 1px solid #ccaa99;
84         border-right: 1px solid #993300;
85         border-bottom: 1px solid #331100;
86         padding: 0px 0.5em 0px 0.5em;
87         font-family: helvetica, arial, sans-serif;
88         font-weight: bold;
89         font-size: small;
90         text-decoration: none;
91         margin-top: 1em;
92 }
93 .rssbutton:hover {
94         color: white !important;
95         background: #ff9900;
96 }