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