]> sipb.mit.edu Git - ikiwiki.git/blob - basewiki/style.css
remove date munging, seems to be unnecessary
[ikiwiki.git] / basewiki / style.css
1 .header {
2         margin: 0;
3         font-size: 22px;
4         font-weight: bold;
5         line-height: 1em;
6         display: block;
7 }
8
9 .author {
10         margin: 0;
11         font-size: 18px;
12         font-weight: bold;
13         display: block;
14 }
15
16 #actions ul {
17         margin: 0;
18         padding: 6px;
19         list-style-type: none;
20         border-bottom: 1px solid #000;
21 }
22
23 #actions li {
24         display: inline;
25         padding: .2em .4em;
26 }
27
28 #searchform {
29         display: inline;
30         float: right;
31 }
32
33 #content {
34         border-bottom: 1px solid #000;
35 }
36
37 #editcontent {
38         width: 100%;
39 }      
40
41 /* Stuff for the RecentChanges table. */
42 tr.changeheader {
43         background: #eee;
44         color: black !important;
45 }
46 tr.changeinfo {
47         background: #eee;
48         color: black !important;
49 }
50 th.changeheader {
51         padding: 1px .3em;
52 }
53 td.changeinfo { 
54         padding: 1px .3em;
55 }
56 td.changetime {
57         white-space: nowrap;
58         padding: 1px .3em;
59 }
60 td.changelog {
61         font-style: italic;
62 }
63
64 /* Used for adding a blog page. */
65 #blogform {
66         padding: 10px 10px;
67         border: 1px solid #aaa;
68         background: #eee;
69         color: black !important;
70 }
71
72 .inlinepage {
73         padding: 10px 10px;
74         border: 1px solid #aaa;
75 }
76
77 #backlinks {
78         margin: 1em 0;
79 }
80
81 #footer {
82         margin: 1em 0;
83 }
84
85 .pageinfo {
86         font-style: italic;
87         display: block;
88 }
89
90 /* Used for invalid form fields. */
91 .fb_invalid {
92         color: red;
93         background: white !important;
94 }
95
96 /* Used for required form fields. */
97 .fb_required {
98         font-weight: bold;
99 }
100
101 /* RSS button. */
102 .rssbutton {
103         background: #ff6600;
104         color: white !important;
105         border-left: 1px solid #cc9966;
106         border-top: 1px solid #ccaa99;
107         border-right: 1px solid #993300;
108         border-bottom: 1px solid #331100;
109         padding: 0px 0.5em 0px 0.5em;
110         font-family: helvetica, arial, sans-serif;
111         font-weight: bold;
112         font-size: small;
113         text-decoration: none;
114         margin-top: 1em;
115 }
116 .rssbutton:hover {
117         color: white !important;
118         background: #ff9900;
119 }
120
121 /* Tag cloud. */
122 .pagecloud {
123         float: right;
124         width: 30%;
125         text-align: center;
126 }
127 .smallestPC { font-size: 70%; }
128 .smallPC { font-size: 85%; }
129 .normalPC { font-size: 100%; }
130 .bigPC { font-size: 115%; }
131 .biggestPC { font-size: 130%; }
132
133 #sidebar {
134         line-height: 3ex;
135         width: 20ex;
136         float: right;
137         margin-left: 40px;
138         margin-bottom: 40px;
139         padding: 2ex 2ex;
140 }
141
142 .infobox {
143         float: right;
144         margin-left: 2ex;
145         margin-top: 1ex;
146         margin-bottom: 1ex;
147         padding: 1ex 1ex;
148         border: 1px solid #aaa;
149 }
150
151 .notebox {
152         float: right;
153         margin-left: 2ex;
154         margin-top: 1ex;
155         margin-bottom: 1ex;
156         padding: 1ex 1ex;
157         border: 1px solid #aaa;
158         width: 25%
159 }
160
161 /* outlines  */
162 li.L1 {
163         list-style: upper-roman;
164 }
165 li.L2 {
166         list-style: decimal;
167 }
168 li.L3 {
169         list-style: lower-alpha;
170 }
171 li.L4 {
172         list-style: disc;
173 }
174 li.L5 {
175         list-style: square;
176 }
177 li.L6 {
178         list-style: circle;
179 }
180 li.L7 {
181         list-style: lower-roman;
182 }
183 li.L8 {
184         list-style: upper-alpha;
185 }