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