1/**
2 * This file provides the settings for theme 'white'.
3 *
4 * @author LarsDW223
5 */
6
7body {
8    color: black;
9    font: normal 87.5%/1.4 Arial, sans-serif;
10    /* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */
11}
12
13/* Background color for grid cells */
14#dokuwiki__site.white > div {
15    background-color: white;
16}
17
18/* Tables */
19#dokuwiki__site.white th {
20    text-align: center;
21    font-weight: bold;
22    background-color: gainsboro;
23}
24
25#dokuwiki__site.white td {
26    background-color: floralwhite;
27    border: 1px solid gainsboro;
28}
29
30/* Style for invalid cell type */
31#dokuwiki__site.white div.grid-invalid {
32    background-color: white;
33    color: red;
34    font-weight: bold;
35}
36
37#dokuwiki__site.white div.grid-invalid div {
38    color: red;
39    font-weight: bold;
40    background-color: white;
41}
42
43/* Diff view mark? */
44#dokuwiki__site.white mark {
45    background-color: #ffff99;
46    color: inherit;
47}
48
49#dokuwiki__site.white pre,
50#dokuwiki__site.white code,
51#dokuwiki__site.white samp,
52#dokuwiki__site.white kbd {
53    font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
54    /* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
55    font-size: 1em;
56    color: black;
57}
58
59#dokuwiki__site.white pre,
60#dokuwiki__site.white samp,
61#dokuwiki__site.white kbd {
62    margin: 1em @ini_code_margin;
63    background-color: #fbfaf9;
64    border-radius: 2px;
65}
66
67#dokuwiki__site.white code {
68    background-color: lightgray;
69    padding: 0 0.25em;
70}
71
72#dokuwiki__site.white pre {
73    border: 1px solid #cccccc;
74    border-radius: 2px;
75    padding: .7em 1em;
76}
77
78#dokuwiki__site.white blockquote {
79    font-style: italic;
80    padding: 0 .15em;
81    border: solid firebrick;
82    border-width: 0 0 0 .15em;
83    background-color: cornsilk;
84}
85
86[dir=rtl] #dokuwiki__site.white blockquote {
87    border-width: 0 .15em 0 0;
88}
89
90#dokuwiki__site.white input,
91#dokuwiki__site.white textarea,
92#dokuwiki__site.white button,
93#dokuwiki__site.white select,
94#dokuwiki__site.white optgroup,
95#dokuwiki__site.white option,
96#dokuwiki__site.white keygen,
97#dokuwiki__site.white output,
98#dokuwiki__site.white meter,
99#dokuwiki__site.white progress {
100    font: inherit;
101    font-weight: normal;
102    color: black;
103    background-color: cornsilk;
104    line-height: normal;
105    margin: 0;
106    vertical-align: middle;
107    box-sizing: border-box;
108}
109
110#dokuwiki__site.white input,
111#dokuwiki__site.white textarea,
112#dokuwiki__site.white select,
113#dokuwiki__site.white keygen {
114    border: 1px solid #cccccc;
115    border-radius: 0.5em;
116    padding: 0em 0.25em;
117}
118
119#dokuwiki__site.white input:active,
120#dokuwiki__site.white input:focus,
121#dokuwiki__site.white textarea:active,
122#dokuwiki__site.white textarea:focus,
123#dokuwiki__site.white select:active,
124#dokuwiki__site.white select:focus,
125#dokuwiki__site.white keygen:active,
126#dokuwiki__site.white keygen:focus {
127    border-color: #f00000;
128}
129
130#dokuwiki__site.white input[type=radio],
131#dokuwiki__site.white input[type=checkbox],
132#dokuwiki__site.white input[type=image] {
133    padding: 0;
134    border-style: none;
135    box-shadow: none;
136}
137
138/* all types of buttons */
139#dokuwiki__site.white input[type=submit],
140#dokuwiki__site.white input[type=button],
141#dokuwiki__site.white input[type=reset],
142#dokuwiki__site.white input.button,
143#dokuwiki__site.white a.button,
144#dokuwiki__site.white button,
145#dokuwiki__site.white .qq-upload-button {
146    color: #333;
147    background-color: snow;
148    border: 1px solid #ccc;
149    padding: .1em .5em;
150    cursor: pointer;
151}
152
153#dokuwiki__site.white input[type=submit]:hover,
154#dokuwiki__site.white input[type=submit]:active,
155#dokuwiki__site.white input[type=submit]:focus,
156#dokuwiki__site.white input[type=button]:hover,
157#dokuwiki__site.white input[type=button]:active,
158#dokuwiki__site.white input[type=button]:hover,
159#dokuwiki__site.white input[type=reset]:hover,
160#dokuwiki__site.white input[type=reset]:active,
161#dokuwiki__site.white input[type=reset]:hover,
162#dokuwiki__site.white input.button:hover,
163#dokuwiki__site.white input.button:active,
164#dokuwiki__site.white input.button:focus,
165#dokuwiki__site.white a.button:hover,
166#dokuwiki__site.white a.button:active,
167#dokuwiki__site.white a.button:focus,
168#dokuwiki__site.white button:hover,
169#dokuwiki__site.white button:active,
170#dokuwiki__site.white button:focus,
171#dokuwiki__site.white .qq-upload-button:hover {
172    border-color: #999;
173    background-color: #ffffff;
174}
175
176#dokuwiki__site.white input[disabled],
177#dokuwiki__site.white button[disabled],
178#dokuwiki__site.white select[disabled],
179#dokuwiki__site.white textarea[disabled],
180#dokuwiki__site.white option[disabled],
181#dokuwiki__site.white input[readonly],
182#dokuwiki__site.white button[readonly],
183#dokuwiki__site.white select[readonly],
184#dokuwiki__site.white textarea[readonly] {
185    cursor: auto;
186    opacity: .5;
187    background-color: #eeeeee;
188}
189
190/* List styles */
191#dokuwiki__site.white ul             { list-style: circle outside; }
192#dokuwiki__site.white ol             { list-style: decimal outside; }
193#dokuwiki__site.white ol ol          { list-style-type: lower-alpha; }
194#dokuwiki__site.white ol ol ol       { list-style-type: upper-roman; }
195#dokuwiki__site.white ol ol ol ol    { list-style-type: upper-alpha; }
196#dokuwiki__site.white ol ol ol ol ol { list-style-type: lower-roman; }
197
198/* Page-ID on page */
199#dokuwiki__site.white .pageId.inside {
200    font-size: 1.25em;
201    background-color: snow;
202    padding: 0 1em;
203    margin: 0;
204    border-bottom: 1px solid lightgrey;
205    color: black;
206    font-weight: bold;
207}
208
209[dir=rtl] .dokuwiki .pageId.inside {
210    text-align: right;
211}
212
213/* Doc-Info on page */
214#dokuwiki__site.white .docInfo.inside {
215    background-color: snow;
216    font-size: 1em;
217    text-align: right;
218    border-top: 1px solid lightgrey;
219    padding: 0 1em 0 0;
220    margin: 0;
221}
222
223[dir=rtl] .dokuwiki .docInfo.inside {
224    text-align: left;
225}
226
227#dokuwiki__site.white span.bchead,
228#dokuwiki__site.white span.bcsep {
229    color: black;
230    font-weight: bold;
231}
232
233/* Links */
234#dokuwiki__site.white a {
235    outline: none;
236}
237
238#dokuwiki__site.white a:link,
239#dokuwiki__site.white a:visited {
240    text-decoration: none;
241    color: @ini_link;
242}
243
244#dokuwiki__site.white a:link:hover,
245#dokuwiki__site.white a:visited:hover,
246#dokuwiki__site.white a:link:focus,
247#dokuwiki__site.white a:visited:focus,
248#dokuwiki__site.white a:link:active,
249#dokuwiki__site.white a:visited:active {
250    text-decoration: underline;
251}
252
253/* Links to wiki pages */
254
255/* Existing wikipage */
256#dokuwiki__site.white a.wikilink1 {
257    color: LightSeaGreen;
258    background-color: inherit;
259}
260
261/* Not existing wikipage */
262#dokuwiki__site.white a.wikilink2 {
263    text-decoration: line-through;
264    text-decoration-color: red;
265    color: black;
266    background-color: inherit;
267}
268
269#dokuwiki__site.white a.wikilink2:visited {
270    text-decoration: none;
271}
272
273#dokuwiki__site.white a.wikilink2:hover,
274#dokuwiki__site.white a.wikilink2:active,
275#dokuwiki__site.white a.wikilink2:focus {
276    border-bottom-width: 0;
277}
278
279/* any link to current page */
280#dokuwiki__site.white span.curid a {
281    font-weight: bold;
282}
283
284/* Other link types */
285
286#dokuwiki__site.white a.urlextern,
287#dokuwiki__site.white a.windows,
288#dokuwiki__site.white a.mail,
289#dokuwiki__site.white a.mediafile,
290#dokuwiki__site.white a.interwiki {
291    background-repeat: no-repeat;
292    background-position: 0 center;
293    padding: 0 0 0 18px;
294}
295/* external link */
296#dokuwiki__site.white a.urlextern {
297    background-image: url(../../images/external-link.png);
298}
299/* windows share */
300#dokuwiki__site.white a.windows {
301    background-image: url(../../images/unc.png);
302}
303/* email link */
304#dokuwiki__site.white a.mail {
305    background-image: url(../../images/email.png);
306}
307
308/* icons of the following are set by dokuwiki in lib/exe/css.php */
309/* link to some embedded media */
310#dokuwiki__site.white a.mediafile {
311}
312/* interwiki link */
313#dokuwiki__site.white a.interwiki {
314}
315
316/* RTL corrections; if link icons don't work as expected, remove the following lines */
317[dir=rtl] #dokuwiki__site.white a.urlextern,
318[dir=rtl] #dokuwiki__site.white a.windows,
319[dir=rtl] #dokuwiki__site.white a.mail,
320[dir=rtl] #dokuwiki__site.white a.interwiki,
321[dir=rtl] #dokuwiki__site.white a.mediafile {
322    background-position: right center;
323    padding: 0 18px 0 0;
324}
325