1/**
2 * This file provides the most basic styles.
3 *
4 * @author Andreas Gohr <andi@splitbrain.org>
5 * @author Anika Henke <anika@selfthinker.org>
6 */
7
8* { padding: 0; margin: 0; }
9
10body {
11    font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
12    background-color: __background__;
13    color: __text__;
14}
15
16
17/*____________ headers ____________*/
18
19/* general headline setup */
20.dokuwiki h1,
21.dokuwiki h2,
22.dokuwiki h3,
23.dokuwiki h4,
24.dokuwiki h5 {
25    color: __text__;
26    background-color: inherit;
27    font-size: 100%;
28    font-weight: normal;
29    margin-top: 15px;
30    margin-bottom: 8px;
31    border-bottom: 1px solid #B0B0FF;
32    clear: left;
33}
34[dir=rtl] .dokuwiki h1,
35[dir=rtl] .dokuwiki h2,
36[dir=rtl] .dokuwiki h3,
37[dir=rtl] .dokuwiki h4,
38[dir=rtl] .dokuwiki h5 {
39        clear: right;
40}
41
42/* special headlines */
43.dokuwiki h1 {
44    font-size: 160%;
45    margin-left: 0px;
46    font-weight: bold;
47}
48.dokuwiki h2 {
49    font-size: 150%;
50    margin-left: 0px;
51}
52.dokuwiki h3 {
53    font-size: 140%;
54    margin-left: 0px;
55    border-bottom: none;
56    font-weight: bold;
57}
58.dokuwiki h4 {
59    font-size: 120%;
60    margin-left: 0px;
61    border-bottom: none;
62    font-weight: bold;
63}
64.dokuwiki h5 {
65    font-size: 100%;
66    margin-left: 0px;
67    border-bottom: none;
68    font-weight: bold;
69}
70
71.dokuwiki h1 a,
72.dokuwiki h2 a,
73.dokuwiki h3 a,
74.dokuwiki h4 a,
75.dokuwiki h5 a,
76.dokuwiki a.nolink {
77    color: __text__ !important;
78    text-decoration: none !important;
79}
80
81
82/*____________ basic margins and paddings ____________*/
83
84.dokuwiki p {
85    margin-bottom: 0.5em;
86}
87
88.dokuwiki blockquote,
89.dokuwiki table,
90.dokuwiki pre {
91    margin: 0 0 1.0em 0;
92}
93
94
95/*____________ lists ____________*/
96
97.dokuwiki ul,
98.dokuwiki ol {
99    line-height: 1.5em;
100    list-style-image: none;
101    margin: 0 0 0.5em 1.5em;
102    color: __text_alt__;
103}
104[dir=rtl] .dokuwiki ul,
105[dir=rtl] .dokuwiki ol {
106    margin: 0 1.5em 0.5em 0;
107}
108
109/* unordered lists */
110.dokuwiki ul {
111    list-style-type: square;
112}
113
114/* ordered lists */
115.dokuwiki ol {
116    font-weight: bold;
117}
118
119/* no bottom gap in between and smaller left margin for nested lists */
120.dokuwiki li ul,
121.dokuwiki li ol {
122    margin: 0 0 0 1.5em;
123}
124[dir=rtl] .dokuwiki li ul,
125[dir=rtl] .dokuwiki li ol {
126    margin: 0 1.5em 0 0;
127}
128
129/* the list items overriding the ul/ol definition */
130.dokuwiki .li {
131    color: __text__;
132    font-weight: normal;
133}
134
135.dokuwiki ol { list-style-type: decimal; }
136.dokuwiki ol ol { list-style-type: upper-roman; }
137.dokuwiki ol ol ol { list-style-type: lower-alpha; }
138.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
139
140
141/*____________ tables ____________*/
142
143.dokuwiki table {
144    font-size: 100%;
145    background-color: __background__;
146    border-spacing: 0px;
147    border-collapse: collapse;
148}
149
150.dokuwiki table th {
151    padding: 3px;
152    border: 1px solid __border__;
153    background-color: __background_alt__;
154}
155
156.dokuwiki table td {
157    padding: 3px;
158    border: 1px solid __border__;
159}
160
161
162/*____________ links ____________*/
163
164.dokuwiki a:link,
165.dokuwiki a:visited {
166    color: __extern__;
167    text-decoration: none;
168}
169.dokuwiki a:hover,
170.dokuwiki a:active,
171.dokuwiki a:focus {
172    color: __text__;
173    text-decoration: underline;
174}
175
176
177/*____________ misc ____________*/
178
179.dokuwiki img {
180    border: 0;
181}
182
183.dokuwiki hr {
184    border: 0px;
185    border-top: 1px solid __border__;
186    text-align: center;
187    height: 0px;
188}
189
190.dokuwiki acronym {
191    cursor: help;
192    border-bottom: 1px dotted __text__;
193}
194
195/* inline code words */
196.dokuwiki code {
197    font-size: 120%;
198}
199
200.dokuwiki pre {
201    font-size: 120%;
202    padding: 0.5em;
203    border: 1px dashed __border__;
204    color: __text__;
205    overflow: auto;
206    direction: ltr;
207    text-align: left;
208}
209
210.dokuwiki blockquote {
211    border-left: 2px solid __border__;
212    padding-left: 3px;
213}
214[dir=rtl] .dokuwiki blockquote {
215    border-left-width: 0;
216    padding-left: 0;
217    border-right: 2px solid __border__;
218    padding-right: 3px;
219}
220
221
222/*____________ forms ____________*/
223
224.dokuwiki input,
225.dokuwiki textarea,
226.dokuwiki button,
227.dokuwiki select,
228.dokuwiki optgroup,
229.dokuwiki option {
230    font: inherit;
231    line-height: 1;
232    margin: 0;
233    vertical-align: middle;
234    -moz-box-sizing: border-box;
235    -webkit-box-sizing: border-box;
236    box-sizing: border-box;
237}
238.dokuwiki input::-moz-focus-inner,
239.dokuwiki button::-moz-focus-inner {
240    border: 0;
241    padding: 0;
242}
243
244.dokuwiki input.edit,
245.dokuwiki select.edit,
246.dokuwiki input.missing,
247.dokuwiki input.button,
248.dokuwiki button.button,
249.dokuwiki .qq-upload-button {
250    font-size: 100%;
251    border: 1px solid __border__;
252    margin: 1px;
253    padding: 0.2em 0.3em;
254}
255
256.dokuwiki input.edit,
257.dokuwiki select.edit {
258    color: __text__;
259    background:  __background__ url(images/inputshadow.png) repeat-x top;
260}
261
262.dokuwiki input.button,
263.dokuwiki button.button,
264.dokuwiki .qq-upload-button {
265    color: __text__;
266    background: __background__ url(images/buttonshadow.png) repeat-x bottom;
267    cursor: pointer;
268}
269
270.dokuwiki div.secedit input.button {
271    margin: 0;
272    padding: 0;
273    font-size: 10px;
274    float: right;
275}
276[dir=rtl] .dokuwiki div.secedit input.button {
277    float: left;
278}
279button.toolbutton {
280    background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
281    padding: 0px;
282    margin: 0 1px 0 0;
283    border: 1px solid __border__;
284    cursor: pointer;
285}
286
287.dokuwiki select.edit {
288    padding: 0.1em 0;
289}
290
291.dokuwiki textarea.edit {
292    font-family: monospace;
293    font-size: 14px;
294    color: __text__;
295    background: __background__ url(images/inputshadow.png) repeat-x top;
296    border: 1px solid __border__;
297    padding: 0.3em 0 0 0.3em;
298}
299[dir=rtl] .dokuwiki textarea.edit {
300    padding: 0.3em 0.3em 0 0;
301}
302
303.dokuwiki textarea.edit[disabled],
304.dokuwiki textarea.edit[readonly],
305.dokuwiki input.edit[disabled],
306.dokuwiki input.edit[readonly],
307.dokuwiki input.button[disabled],
308.dokuwiki select.edit[disabled] {
309    background-color: __background_neu__!important;
310    color: __text_neu__!important;
311}
312