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 {
85    border-width: 0;
86    vertical-align: middle;
87}
88img.media {
89    margin: .2em 0;
90}
91img.medialeft {
92    margin: .2em 1.5em .2em 0;
93}
94img.mediaright {
95    margin: .2em 0 .2em 1.5em;
96}
97img.mediacenter {
98    margin: .2em auto;
99}
100
101mark {
102    font-weight: bold;
103}
104
105blockquote {
106    padding: 0 10pt;
107    margin: 0;
108    border: solid #ccc;
109    border-width: 0 0 0 2pt;
110}
111[dir=rtl] blockquote {
112    border-width: 0 2pt 0 0;
113}
114
115/* tables */
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    text-align: left;
129}
130[dir=rtl] th,
131[dir=rtl] td {
132    text-align: right;
133}
134th {
135    font-weight: bold;
136}
137
138
139/*____________ a bit of layout ____________*/
140
141#dokuwiki__header {
142    border-bottom: 2pt solid #ccc;
143}
144#dokuwiki__header h1 {
145    font-size: 1.5em;
146}
147#dokuwiki__header h1 a {
148    text-decoration: none;
149}
150.dokuwiki div.footnotes {
151    clear: both;
152    border-top: 1pt solid #000;
153    margin-top: 10pt;
154}
155