1/**
2 * This file provides the styles for printing.
3 *
4 * @author Klaus Vormweg <klaus.vormweg@gmx.de>
5 */
6
7body {
8    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;
9    background-color: __background__;
10    color: __text__;
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    color: __existing__;
60    background-color: inherit;
61    background-image: none;
62    padding: 0;
63}
64
65/* display href after link */
66a.urlextern:after,
67a.interwiki:after,
68a.mail:after {
69   content: " [" attr(href) "]";
70   font-size: 90%;
71}
72
73/* code blocks */
74pre {
75    font-family: monospace;
76}
77dl.code dt,
78dl.file dt {
79    font-weight: bold;
80}
81
82/* images */
83img {
84    border-width: 0;
85    vertical-align: middle;
86}
87img.media {
88    margin: .2em 0;
89}
90img.medialeft {
91    margin: .2em 1.5em .2em 0;
92}
93img.mediaright {
94    margin: .2em 0 .2em 1.5em;
95}
96img.mediacenter {
97    margin: .2em auto;
98}
99
100mark {
101    font-weight: bold;
102}
103
104blockquote {
105    padding: 0 10pt;
106    margin: 0;
107    border: solid __border__;
108    border-width: 0 0 0 2pt;
109}
110[dir=rtl] blockquote {
111    border-width: 0 2pt 0 0;
112}
113abbr {
114  text-decoration: none;
115  border-bottom: none;
116}
117
118/* tables */
119table {
120    border-collapse: collapse;
121    empty-cells: show;
122    border-spacing: 0;
123    border: 1pt solid __border__;
124}
125th,
126td {
127    padding: 3pt 5pt;
128    margin: 0;
129    vertical-align: top;
130    border: 1pt solid __borderdark__;
131    text-align: left;
132}
133[dir=rtl] th,
134[dir=rtl] td {
135    text-align: right;
136}
137th {
138    font-weight: bold;
139}
140
141
142/*____________ a bit of layout ____________*/
143
144#dokuwiki__header {
145  border-bottom: 2pt solid __border__;
146}
147#dokuwiki__header .headings a {
148	display: block;
149	float: left;
150}
151#dokuwiki__header h1 {
152  float: right;
153  clear: none;
154  margin: 0;
155}
156#dokuwiki__header h1 a {
157  text-decoration: none;
158}
159.dokuwiki div.footnotes {
160  clear: both;
161  border-top: 1pt solid __borderdark__;
162  margin-top: 10pt;
163}
164