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