1/*desbest edit */
2div.error, div.info, div.success, div.notify {
3    background-position: 0px 50% !important;
4    border: 0px !important;
5    background-color: transparent !important;
6    padding-left: 24px !important;
7}
8#dokuwiki__aside li a { background-image: none; padding: 0px; }
9textarea { font-family: 'Courier New' !important; }
10
11.dokuwiki a.wikilink1,
12div.breadcrumbs a,
13#dokuwiki__header div.breadcrumbs
14{
15    color: __link__ !important;
16}
17
18
19
20/**
21 * This file provides the most basic styles.
22 *
23 * If you integrate DokuWiki into another project, you might either
24 * want to integrate this file into the other project as well, or use
25 * the other project's basic CSS for DokuWiki instead of this one.
26 *
27 * @author Anika Henke <anika@selfthinker.org>
28 */
29
30html {
31    overflow-x: auto;
32    overflow-y: scroll;
33}
34html,
35body {
36    background-color: __background__;
37    color: __text__;
38    margin: 0;
39    padding: 0;
40}
41body {
42    font: normal 100%/1.4 "Times New Roman", Frutiger, Calibri, "Myriad Pro", Myriad, "Nimbus Sans L", Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
43    /* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */
44    -webkit-text-size-adjust: 100%;
45}
46
47
48/*____________ headers ____________*/
49
50h1,
51h2,
52h3,
53h4,
54h5,
55h6 {
56    font-family: "Times New Roman", Constantia, Utopia, Lucidabright, Lucida, Georgia, "Nimbus Roman No9 L", serif;
57    font-weight: bold;
58    color: __text_neu__;
59    background-color: inherit;
60    padding: 0;
61    line-height: 1.2;
62    clear: left; /* ideally 'both', but problems with toc */
63}
64[dir=rtl] h1,
65[dir=rtl] h2,
66[dir=rtl] h3,
67[dir=rtl] h4,
68[dir=rtl] h5,
69[dir=rtl] h6 {
70    clear: right;
71}
72
73h1 {
74    /*font-size: 2.25em;*/
75    margin: 0 0 0.444em;
76}
77h2 {
78    font-size: 1.5em;
79    margin: 0 0 0.666em;
80}
81h3 {
82    font-size: 1.125em;
83    margin: 0 0 0.888em;
84}
85h4 {
86    font-size: 1em;
87    margin: 0 0 1.0em;
88}
89h5 {
90    font-size: .875em;
91    margin: 0 0 1.1428em;
92}
93h6 {
94    font-size: .75em;
95    margin: 0 0 1.333em;
96}
97/* bottom margin = 1 / font-size */
98
99caption,
100figcaption,
101summary,
102legend {
103    font-style: italic;
104    font-weight: normal;
105    line-height: 1.2;
106    padding: 0;
107    margin: 0 0 .35em;
108}
109
110
111/*____________ basic margins and paddings ____________*/
112
113p,
114ul,
115ol,
116dl,
117pre,
118table,
119/*hr,*/
120/*desbest edit */
121blockquote,
122figure,
123details,
124fieldset,
125address {
126    margin: 0 0 1.4em 0; /* bottom margin = line-height */
127    padding: 0;
128}
129
130div {
131    margin: 0;
132    padding: 0;
133}
134
135
136/*____________ lists ____________*/
137
138ul,
139ol {
140    padding: 0 0 0 1.5em;
141}
142[dir=rtl] ul,
143[dir=rtl] ol {
144    padding: 0 1.5em 0 0;
145}
146
147/*desbest edit */
148nav ul, nav ol { padding: 0px; }
149header li:first-of-type { margin: 0px; }
150
151li,
152dd {
153    padding: 0;
154    margin: 0 0 0 1.5em;
155}
156[dir=rtl] li,
157[dir=rtl] dd {
158    margin: 0 1.5em 0 0;
159}
160
161dt {
162    font-weight: bold;
163    margin: 0;
164    padding: 0;
165}
166
167li ul,
168li ol,
169li dl,
170dl ul,
171dl ol,
172dl dl {
173    margin-bottom: 0;
174    padding: 0;
175}
176li li {
177    font-size: 100%;
178}
179
180ul {
181    list-style: disc outside;
182}
183ol {
184    list-style: decimal outside;
185}
186ol ol {
187    list-style-type: lower-alpha;
188}
189ol ol ol {
190    list-style-type: upper-roman;
191}
192ol ol ol ol {
193    list-style-type: upper-alpha;
194}
195ol ol ol ol ol {
196    list-style-type: lower-roman;
197}
198
199
200/*____________ tables ____________*/
201
202table {
203    border-collapse: collapse;
204    empty-cells: show;
205    border-spacing: 0;
206    border: 1px solid __border__;
207}
208
209caption {
210    caption-side: top;
211    text-align: left;
212}
213[dir=rtl] caption {
214    text-align: right;
215}
216
217th,
218td {
219    padding: .3em .5em;
220    margin: 0;
221    vertical-align: top;
222    border: 1px solid __border__;
223}
224th {
225    font-weight: bold;
226    background-color: __background_alt__;
227    color: inherit;
228    text-align: left;
229}
230[dir=rtl] th {
231    text-align: right;
232}
233
234
235/*____________ links ____________*/
236
237a {
238}
239a:link,
240a:visited {
241    text-decoration: none;
242    color: __link__;
243}
244a:link:hover,
245a:visited:hover,
246a:link:focus,
247a:visited:focus,
248a:link:active,
249a:visited:active {
250    text-decoration: underline;
251}
252a:link:focus,
253a:visited:focus {
254    outline: 1px dotted;
255}
256a:link:active,
257a:visited:active {
258    color: #c00;
259}
260
261
262/*____________ misc ____________*/
263
264img {
265    border-width: 0;
266    vertical-align: middle;
267    color: #666;
268    background-color: transparent;
269    font-style: italic;
270}
271
272img,
273object,
274embed,
275iframe,
276video,
277audio {
278    max-width: 100%;
279}
280
281img,
282video {
283    height: auto;
284}
285
286iframe {
287    border-width: 0;
288    background-color: inherit;
289}
290
291button img {
292    max-width: none;
293}
294
295hr {
296    border-style: solid;
297    border-width: 1px 0 0;
298    text-align: center;
299    height: 0;
300    width: 100%;
301    clear: both;
302}
303
304acronym,
305abbr {
306    font-style: normal;
307}
308acronym[title],
309abbr[title] {
310    cursor: help;
311    border-bottom: 1px dotted;
312    text-decoration: none;
313}
314em acronym,
315em abbr {
316    font-style: italic;
317}
318
319mark {
320    background: __highlight__;
321    color: inherit;
322}
323
324pre,
325code,
326samp,
327kbd {
328    font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
329    /* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
330    font-size: 1em;
331    background-color: __background_alt__;
332    color: __text__;
333    direction: ltr;
334    text-align: left;
335}
336pre {
337    border: 1px solid __border__;
338    padding: 0 .2em;
339    overflow: auto;
340    word-wrap: normal;
341}
342
343blockquote {
344    padding: 0 .5em;
345    border: solid __border__;
346    border-width: 0 0 0 .25em;
347}
348[dir=rtl] blockquote {
349    border-width: 0 .25em 0 0;
350}
351q:before,
352q:after {
353    content: '';
354}
355
356sub,
357sup {
358    font-size: .8em;
359    line-height: 1;
360}
361sub {
362    vertical-align: sub;
363}
364sup {
365    vertical-align: super;
366}
367
368small {
369    font-size: .8em;
370}
371
372wbr {
373    display: inline-block;
374}
375
376/*____________ forms ____________*/
377
378form {
379    display: inline;
380    margin: 0;
381    padding: 0;
382}
383
384fieldset {
385    padding: .7em 1em 0;
386    padding: .7rem 1rem; /* for those browsers understanding :last-child */
387    border: 1px solid #999;
388}
389fieldset > :last-child {
390    margin-bottom: 0;
391}
392legend {
393    padding: 0 .1em;
394}
395
396label {
397    vertical-align: middle;
398    cursor: pointer;
399}
400
401input,
402textarea,
403button,
404select,
405optgroup,
406option,
407keygen,
408output,
409meter,
410progress {
411    font: inherit;
412    color: inherit;
413    /* background-color destroys button look */
414    line-height: normal;
415    margin: 0;
416    vertical-align: middle;
417    -moz-box-sizing: content-box;
418    -webkit-box-sizing: content-box;
419    box-sizing: content-box;
420}
421
422input,
423button,
424select,
425keygen,
426textarea {
427    padding: .1em;
428}
429input[type=radio],
430input[type=checkbox],
431input[type=image],
432input.check {
433    padding: 0;
434}
435
436input[type=submit],
437input[type=button],
438input[type=reset],
439input.button,
440button {
441    cursor: pointer;
442    overflow: visible;
443    padding: .1em .4em;
444}
445
446input[disabled],
447button[disabled],
448select[disabled],
449textarea[disabled],
450option[disabled],
451input[readonly],
452button[readonly],
453select[readonly],
454textarea[readonly] {
455    cursor: auto;
456    opacity: .5;
457}
458
459input:focus,
460button:focus,
461select:focus,
462keygen:focus,
463textarea:focus {
464    box-shadow: 0 0 5px #999;
465    outline: 0;
466}
467input::-moz-focus-inner,
468button::-moz-focus-inner {
469    border: 0;
470    padding: 0;
471}
472
473select {
474    max-width: 100%;
475}
476optgroup {
477    font-style: italic;
478    font-weight: bold;
479}
480option {
481    font-style: normal;
482    font-weight: normal;
483}
484