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 */
14audio,
15video,
16#dokuwiki__header .tools,
17#dokuwiki__aside,
18.dokuwiki .breadcrumbs,
19.dokuwiki .toc,
20#dw__toc,
21#dokuwiki__pagetools,
22#dokuwiki__footer {
23    display: none;
24}
25
26h1,
27h2,
28h3,
29h4,
30h5,
31caption,
32legend {
33    clear: both;
34}
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
55/* undo icons */
56a:link,
57a:visited {
58    text-decoration: none;
59    border-bottom: 1pt dotted;
60    color: #333;
61    background-color: inherit;
62    background-image: none;
63    padding: 0;
64}
65
66/* display href after link */
67a.urlextern:after,
68a.interwiki:after,
69a.mail:after {
70   content: " [" attr(href) "]";
71   font-size: 90%;
72}
73
74/* code blocks */
75pre {
76    font-family: monospace;
77}
78dl.code dt,
79dl.file dt {
80    font-weight: bold;
81}
82
83/* images */
84img,
85svg {
86    border-width: 0;
87    vertical-align: middle;
88}
89img.media {
90    margin: .2em 0;
91}
92img.medialeft {
93    margin: .2em 1.5em .2em 0;
94}
95img.mediaright {
96    margin: .2em 0 .2em 1.5em;
97}
98img.mediacenter {
99    margin: .2em auto;
100}
101
102mark {
103    font-weight: bold;
104}
105
106blockquote {
107    padding: 0 10pt;
108    margin: 0;
109    border: solid #ccc;
110    border-width: 0 0 0 2pt;
111}
112[dir=rtl] blockquote {
113    border-width: 0 2pt 0 0;
114}
115
116/* tables */
117table {
118    border-collapse: collapse;
119    empty-cells: show;
120    border-spacing: 0;
121    border: 1pt solid #ccc;
122}
123th,
124td {
125    padding: 3pt 5pt;
126    margin: 0;
127    vertical-align: top;
128    border: 1pt solid #666;
129    text-align: left;
130}
131[dir=rtl] th,
132[dir=rtl] td {
133    text-align: right;
134}
135th {
136    font-weight: bold;
137}
138
139
140/*____________ a bit of layout ____________*/
141
142#dokuwiki__header {
143    border-bottom: 2pt solid #ccc;
144}
145#dokuwiki__header h1 {
146    font-size: 1.5em;
147}
148#dokuwiki__header h1 a {
149    text-decoration: none;
150}
151.dokuwiki div.footnotes {
152    clear: both;
153    border-top: 1pt solid #000;
154    margin-top: 10pt;
155}
156