1/**
2 * This file provides the styles for printing.
3 *
4 * @todo: improve and finish
5 */
6
7body {
8	font:
9		normal 87.5%/1.3 Garamond,
10		Baskerville,
11		"Hoefler Text",
12		"Nimbus Roman No9 L",
13		serif;
14	background-color: #fff;
15	color: #000;
16}
17
18/* Hide certain sections */
19audio,
20video,
21#dokuwiki__header .tools,
22#dokuwiki__aside,
23.dokuwiki .breadcrumbs,
24.dokuwiki .toc,
25#dw__toc,
26#dokuwiki__pagetools,
27#dokuwiki__footer {
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/* Undo icons */
66a:link,
67a:visited {
68	text-decoration: none;
69	border-bottom: 1pt dotted;
70	color: #333;
71	background-color: inherit;
72	background-image: none;
73	padding: 0;
74}
75
76/* display href after link */
77a.urlextern:after,
78a.interwiki:after,
79a.mail:after {
80	content: " [" attr(href) "]";
81	font-size: 90%;
82}
83
84/* Code blocks */
85pre {
86	font-family: monospace;
87}
88
89dl.code dt,
90dl.file dt {
91	font-weight: bold;
92}
93
94/* Images */
95img,
96svg {
97	border-width: 0;
98	vertical-align: middle;
99}
100
101img.media {
102	margin: 0.2em 0;
103}
104
105img.medialeft {
106	margin: 0.2em 1.5em 0.2em 0;
107}
108
109img.mediaright {
110	margin: 0.2em 0 0.2em 1.5em;
111}
112
113img.mediacenter {
114	margin: 0.2em auto;
115}
116
117mark {
118	font-weight: bold;
119}
120
121blockquote {
122	padding: 0 10pt;
123	margin: 0;
124	border: solid #ccc;
125	border-width: 0 0 0 2pt;
126}
127
128[dir="rtl"] blockquote {
129	border-width: 0 2pt 0 0;
130}
131
132/* tables */
133table {
134	border-collapse: collapse;
135	empty-cells: show;
136	border-spacing: 0;
137	border: 1pt solid #ccc;
138}
139
140th,
141td {
142	padding: 3pt 5pt;
143	margin: 0;
144	vertical-align: top;
145	border: 1pt solid #666;
146	text-align: left;
147}
148
149[dir="rtl"] th,
150[dir="rtl"] td {
151	text-align: right;
152}
153
154th {
155	font-weight: bold;
156}
157
158/* A bit of layout */
159
160#dokuwiki__header {
161	border-bottom: 2pt solid #ccc;
162}
163
164#dokuwiki__header h1 {
165	font-size: 1.5em;
166}
167
168#dokuwiki__header h1 a {
169	text-decoration: none;
170}
171
172.dokuwiki div.footnotes {
173	clear: both;
174	border-top: 1pt solid #000;
175	margin-top: 10pt;
176}
177