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
14/* hide certain sections */
15
16audio,
17video,
18#dokuwiki__header .tools,
19#dokuwiki__header .headings,
20#dokuwiki__aside,
21.dokuwiki .breadcrumbs,
22.dokuwiki .toc,
23#dw__toc,
24#dokuwiki__pagetools,
25#dokuwiki__footer,
26#dw__search,
27#mm-menu-toggle {
28    display: none;
29}
30
31h1,
32h2,
33h3,
34h4,
35h5,
36caption,
37legend {
38    clear: both;
39}
40
41ul {
42    list-style: disc outside;
43}
44
45ol {
46    list-style: decimal outside;
47}
48
49ol ol {
50    list-style-type: lower-alpha;
51}
52
53ol ol ol {
54    list-style-type: upper-roman;
55}
56
57ol ol ol ol {
58    list-style-type: upper-alpha;
59}
60
61ol ol ol ol ol {
62    list-style-type: lower-roman;
63}
64
65
66/* undo icons */
67
68a:link,
69a:visited {
70    text-decoration: none;
71    border-bottom: 1pt dotted;
72    color: #333;
73    background-color: inherit;
74    background-image: none;
75    padding: 0;
76}
77
78
79/* display href after link */
80
81a.urlextern:after,
82a.interwiki:after,
83a.mail:after {
84    content: " [" attr(href) "]";
85    font-size: 90%;
86}
87
88
89/* code blocks */
90
91pre {
92    font-family: monospace;
93}
94
95dl.code dt,
96dl.file dt {
97    font-weight: bold;
98}
99
100
101/* images */
102
103img {
104    border-width: 0;
105    vertical-align: middle;
106}
107
108img.media {
109    margin: .2em 0;
110}
111
112img.medialeft {
113    margin: .2em 1.5em .2em 0;
114}
115
116img.mediaright {
117    margin: .2em 0 .2em 1.5em;
118}
119
120img.mediacenter {
121    margin: .2em auto;
122}
123
124mark {
125    font-weight: bold;
126}
127
128blockquote {
129    padding: 0 10pt;
130    margin: 0;
131    border: solid #ccc;
132    border-width: 0 0 0 2pt;
133}
134
135[dir=rtl] blockquote {
136    border-width: 0 2pt 0 0;
137}
138
139
140/* tables */
141
142table {
143    border-collapse: collapse;
144    empty-cells: show;
145    border-spacing: 0;
146    border: 1pt solid #ccc;
147}
148
149th,
150td {
151    padding: 3pt 5pt;
152    margin: 0;
153    vertical-align: top;
154    border: 1pt solid #666;
155    text-align: left;
156}
157
158[dir=rtl] th,
159[dir=rtl] td {
160    text-align: right;
161}
162
163th {
164    font-weight: bold;
165}
166
167
168/*____________ a bit of layout ____________*/
169
170#dokuwiki__header {
171    border-bottom: 2pt solid #ccc;
172}
173
174#dokuwiki__header h1 {
175    font-size: 1.5em;
176}
177
178#dokuwiki__header h1 a {
179    text-decoration: none;
180}
181
182.dokuwiki div.footnotes {
183    clear: both;
184    border-top: 1pt solid #000;
185    margin-top: 10pt;
186}