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: white;
10    color: black;
11}
12
13/* hide certain sections */
14.a11y,
15audio,
16video,
17#dokuwiki__header .tools,
18#dokuwiki__sidebar,
19.dokuwiki .breadcrumbs,
20.dokuwiki .pageId,
21#dw__toc,
22h3.toggle,
23#dokuwiki__pagetools,
24#dokuwiki__footer,
25.to_top {
26    display: none;
27}
28
29h1,
30h2,
31h3,
32h4,
33h5,
34caption,
35legend {
36    clear: both;
37}
38ul {
39    list-style: disc outside;
40}
41ol {
42    list-style: decimal outside;
43}
44ol ol {
45    list-style-type: lower-alpha;
46}
47ol ol ol {
48    list-style-type: upper-roman;
49}
50ol ol ol ol {
51    list-style-type: upper-alpha;
52}
53ol ol ol ol ol {
54    list-style-type: lower-roman;
55}
56
57a:link,
58a:visited {
59    text-decoration: none;
60    border-bottom: 1pt dotted;
61    color: @ini_neutraldark;
62    background-color: inherit;
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
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 @ini_neutral3;
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 @ini_neutral3;
123}
124th,
125td {
126    padding: 3pt 5pt;
127    margin: 0;
128    vertical-align: top;
129    border: 1pt solid @ini_neutral1;
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 @ini_neutral3;
144}
145#dokuwiki__header h1 {
146    font-size: 1.5em;
147}
148#dokuwiki__header h1 a {
149    text-decoration: none;
150    border-width: 0;
151}
152#dokuwiki__header h1 img {
153    float: left;
154    margin-right: .5em;
155}
156[dir=rtl] #dokuwiki__header h1 img {
157    float: right;
158    margin-right: 0;
159    margin-left: .5em;
160}
161
162.dokuwiki div.footnotes {
163    clear: both;
164    border-top: 1pt dotted @ini_neutral2;
165    margin-top: 10pt;
166}
167
168.dokuwiki div.docInfo {
169    font-size: 90%;
170    text-align: right;
171    clear: both;
172    padding-top: 2pt;
173    border-top: 1pt solid @ini_neutral2;
174    margin-top: 10pt;
175}
176[dir=rtl] .dokuwiki div.docInfo {
177    text-align: left;
178}
179