1/**
2 * These is an example for ODT styles coded in CSS
3 * for the DokuWiki basic formatting tags.
4 *
5 * Do not edit this file. Instead add your own styles in
6 * the configured template directory ('tpl_dir') and set it under
7 * config option 'odt_template'.
8 *
9 * Notice: this is pseudo CSS. It can include elements or properties
10 *         which are not known to CSS but exist in ODT format as ODT XML
11 *         attributes or which have meaning to the ODT plugin only.
12 *
13 * P.S.: to be able to upload CSS files with the media manager
14 *       you need to edit DokuWiki's mime config file.
15 *       See https://www.dokuwiki.org/mime for more information.
16 */
17
18/* Headings 1 to 5
19 * DokuWiki syntax: ====== Heading ======
20 */
21h1,
22h2,
23h3,
24h4,
25h5 {
26    font-family: "Bitstream Vera Sans";
27    font-weight: bold;
28    font-style: normal;
29}
30
31h1 {
32    font-size: 24pt;
33}
34
35
36h2 {
37    font-size: 18pt;
38}
39
40
41h3 {
42    font-size: 14pt;
43}
44
45h4 {
46    font-size: 12pt;
47}
48
49h5 {
50    font-size: 10pt;
51}
52
53/* Normal text
54 * DokuWiki syntax: Just text
55 */
56p {
57    font-style: normal;
58    margin-top: 0cm;
59    margin-bottom: 0.212cm;
60    text-align: justify;
61}
62
63/* Emphasized, italic text
64 * DokuWiki syntax: //Italic text//
65 */
66em {
67    font-style: italic;
68}
69
70/* Bold text
71 * DokuWiki syntax: **Bold text**
72 */
73strong {
74    font-weight: bold;
75}
76
77/* Underlined text
78 * DokuWiki syntax: __Underlined text__
79 */
80u {
81    text-decoration: underline;
82}
83
84/* Monospaced text
85 * DokuWiki syntax: ''Monospaced text''
86 */
87code {
88}
89
90/* Deleted text
91 * DokuWiki syntax: <del>Deleted text</del>
92 */
93del {
94    text-decoration: line-through;
95}
96
97/* Preformatted Text
98 * DokuWiki syntax: <code>Preformatted text</code>
99 */
100pre {
101    font-family: "Bitstream Vera Sans Mono";
102    margin-top: 0cm;
103    margin-bottom: 0.2cm;
104    join-border: false;
105}
106
107/* Quotations
108 * DokuWiki syntax: > Quotation1
109 */
110quotation1,
111quotation2,
112quotation3,
113quotation4,
114quotation5 {
115    margin-top: 0.25cm;
116    margin-bottom: 0.25cm;
117    padding: 0.5cm;
118}
119
120quotation1 {
121    margin-left: 1cm;
122    border-left: 5pt solid #c0c0c0;
123}
124
125quotation2 {
126    margin-left: 2cm;
127    border-left: 5pt solid #9966cc;
128}
129
130quotation3 {
131    margin-left: 3cm;
132    border-left: 5pt solid #c5000b;
133}
134
135quotation4 {
136    margin-left: 4cm;
137    border-left: 5pt solid #579d1c;
138}
139
140quotation5 {
141    margin-left: 5cm;
142    border-left: 5pt solid #ff9966;
143}
144
145/* Table
146 * DokuWiki syntax: normal table syntax
147 * HINT: use pseudo property align (left, center, right)
148 *       to align the whole table.
149 */
150table {
151    border-collapse: collapse;
152    margin-top: 0.25cm;
153    margin-bottom: 0.25cm;
154}
155
156/* Table heading
157 * DokuWiki syntax: normal table syntax
158 */
159th {
160    text-align: center;
161    font-weight: bold;
162}
163
164/* Table cell
165 * DokuWiki syntax: normal table syntax
166 */
167td {
168    border: 1pt solid black;
169}
170
171/* Horizontal line
172 * DokuWiki syntax: ----
173 */
174hr {
175    border-bottom: 0.04cm double #808080;
176    border-line-width-bottom: 0.002cm 0.035cm 0.002cm;
177    margin-bottom: 0.5cm;
178}
179
180/* Layouts for different list levels.
181 *
182 * You can also use images instead of numbers or bullets by using
183 * 'list-style-image: url('picture.png');' instead of 'list-style-type'.
184 *
185 * The base path is the media directory.
186 * So in this case the picture would be expected in file
187 * 'dokuwiki-installation-directory/data/media/picture.png'.
188 */
189
190/* Un-ordered list.
191 * DokuWiki syntax: * list item text
192 */
193/* Level 1
194 */
195ul {
196    list-style-type: disc;
197    margin-top: 0.5cm;
198    margin-bottom: 0.5cm;
199}
200
201/* Level 2
202 */
203ul ul {
204    list-style-type: circle;
205}
206
207/* Level 3
208 */
209ul ul ul {
210    list-style-type: square;
211}
212
213/* Level 4
214 */
215ul ul ul ul {
216    list-style-type: blackcircle;
217}
218
219/* Level 5
220 */
221ul ul ul ul ul {
222    list-style-type: heavycheckmark;
223}
224
225/* Level 6
226 */
227ul ul ul ul ul ul {
228    list-style-type: ballotx;
229}
230
231/* Level 7
232 */
233ul ul ul ul ul ul ul {
234    list-style-type: heavyrightarrow;
235}
236
237/* Level 8
238 */
239ul ul ul ul ul ul ul ul {
240    list-style-type: lightedrightarrow;
241}
242
243/* Level 9
244 */
245ul ul ul ul ul ul ul ul ul {
246    list-style-type: none;
247}
248
249/* Level 10
250 */
251ul ul ul ul ul ul ul ul ul ul {
252    list-style-type: bullet;
253}
254
255/* Ordered list.
256 * DokuWiki syntax: - list item text
257 */
258/* Level 1
259 */
260ol {
261    list-style-type: decimal;
262}
263
264/* Level 2
265 */
266ol ol {
267    list-style-type: decimal-leading-zero;
268}
269
270/* Level 3
271 */
272ol ol ol {
273    list-style-type: lower-alpha;
274}
275
276/* Level 4
277 */
278ol ol ol ol {
279    list-style-type: lower-latin;
280}
281
282/* Level 5
283 */
284ol ol ol ol ol {
285    list-style-type: lower-roman;
286}
287
288/* Level 6
289 */
290ol ol ol ol ol ol {
291    list-style-type: none;
292}
293
294/* Level 7
295 */
296ol ol ol ol ol ol ol {
297    list-style-type: upper-alpha;
298}
299
300/* Level 8
301 */
302ol ol ol ol ol ol ol ol {
303    list-style-type: upper-latin;
304}
305
306/* Level 9
307 */
308ol ol ol ol ol ol ol ol ol {
309    list-style-type: upper-roman;
310}
311
312/* Level 10
313 */
314ol ol ol ol ol ol ol ol ol ol {
315    list-style-type: decimal;
316}
317
318/* Internet link (not visited)
319 */
320a:link {
321    color: #000080;
322    text-decoration: underline;
323}
324
325/* Visited internet link
326 */
327a:visited {
328    color: #800000;
329    text-decoration: underline;
330}
331
332/* Local link (not visited)
333 */
334a.wikilink1:link {
335    color: #000000;
336    font-weight: bold;
337    text-decoration: underline;
338}
339
340/* Visited local link
341 */
342a.wikilink1:visited {
343    color: #000000;
344    font-weight: bold;
345    text-decoration: underline;
346}
347