1/**
2 * This file provides the styles for printing.
3 *
4 * @todo: improve and finish
5 */
6
7body {
8    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;
9    background-color: #fff;
10    color: #000;
11}
12
13/* hide certain sections */
14.a11y,
15audio,
16video,
17#dokuwiki__aside,
18.dokuwiki .breadcrumbs,
19.dokuwiki .pageId,
20#dw__toc,
21h3.toggle,
22#dokuwiki__pagetools,
23#dokuwiki__footer {
24    display: none;
25}
26
27h1,
28h2,
29h3,
30h4,
31h5,
32caption,
33legend {
34    clear: both;
35}
36ul {
37    list-style: disc outside;
38}
39ol {
40    list-style: decimal outside;
41}
42ol ol {
43    list-style-type: lower-alpha;
44}
45ol ol ol {
46    list-style-type: upper-roman;
47}
48ol ol ol ol {
49    list-style-type: upper-alpha;
50}
51ol ol ol ol ol {
52    list-style-type: lower-roman;
53}
54
55a:link,
56a:visited {
57    text-decoration: none;
58    border-bottom: 1pt dotted;
59    color: #333;
60    background-color: inherit;
61}
62
63/* display href after link */
64a.urlextern:after,
65a.interwiki:after,
66a.mail:after {
67   content: " [" attr(href) "]";
68   font-size: 90%;
69}
70
71/* code blocks */
72pre {
73    font-family: monospace;
74}
75dl.code dt,
76dl.file dt {
77    font-weight: bold;
78}
79
80mark {
81    font-weight: bold;
82}
83
84/* images */
85img {
86    border-width: 0;
87    vertical-align: middle;
88}
89img.media {
90    margin: .2em 0;
91}
92img.medialeft {
93    margin: .2em 1em .2em 0;
94}
95img.mediaright {
96    margin: .2em 0 .2em 1em;
97}
98img.mediacenter {
99    margin: .2em auto;
100}
101
102blockquote {
103    padding: 0 10pt;
104    margin: 0;
105    border: solid #ccc;
106    border-width: 0 0 0 2pt;
107}
108[dir=rtl] blockquote {
109    border-width: 0 2pt 0 0;
110}
111
112/* tables */
113.dokuwiki div.table {
114    margin-bottom: 1.4em;
115}
116table {
117    border-collapse: collapse;
118    empty-cells: show;
119    border-spacing: 0;
120    border: 1pt solid #ccc;
121}
122th,
123td {
124    padding: 3pt 5pt;
125    margin: 0;
126    vertical-align: top;
127    border: 1pt solid #666;
128}
129th {
130    font-weight: bold;
131    text-align: left;
132}
133[dir=rtl] th {
134    text-align: right;
135}
136
137
138/*____________ a bit of layout ____________*/
139
140.dokuwiki div.footnotes {
141    clear: both;
142    border-top: 1pt dotted #999;
143    margin-top: 10pt;
144}
145
146.dokuwiki div.docInfo {
147    font-size: 90%;
148    text-align: right;
149    clear: both;
150    padding-top: 2pt;
151    border-top: 1pt solid #999;
152    margin-top: 10pt;
153}
154[dir=rtl] .dokuwiki div.docInfo {
155    text-align: left;
156}
157