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