1/**
2 * This file provides the styles for printing.
3 *
4 * @todo: improve and finish
5 */
6
7body {
8    /*
9    font: normal 12pt/1.2 serif;
10    color: #000;
11    background-color: #fff;
12    */
13}
14
15/* hide certain sections */
16.a11y,
17#dokuwiki__header .tools,
18#dokuwiki__aside,
19.dokuwiki .breadcrumbs,
20#dw__toc,
21h3.toggle,
22#dokuwiki__pagetools,
23#dokuwiki__footer {
24    display: none;
25}
26
27.dokuwiki h1,
28.dokuwiki h2,
29.dokuwiki h3,
30.dokuwiki h4,
31.dokuwiki h5,
32.dokuwiki caption,
33.dokuwiki legend {
34    clear: both;
35}
36.dokuwiki ul {
37    list-style: disc outside;
38}
39.dokuwiki ol {
40    list-style: decimal outside;
41}
42.dokuwiki ol ol {
43    list-style-type: lower-alpha;
44}
45.dokuwiki ol ol ol {
46    list-style-type: upper-roman;
47}
48.dokuwiki ol ol ol ol {
49    list-style-type: upper-alpha;
50}
51.dokuwiki ol ol ol ol ol {
52    list-style-type: lower-roman;
53}
54
55.dokuwiki a:link,
56.dokuwiki a:visited {
57    text-decoration: underline;
58    color: #333;
59    background-color: inherit;
60}
61
62/* display href after link */
63a.urlextern:after,
64a.interwiki:after,
65a.mail:after {
66   content: " [" attr(href) "]";
67   font-size: 90%;
68}
69
70/* code blocks */
71.dokuwiki pre {
72    font-family: monospace;
73}
74.dokuwiki dl.code dt,
75.dokuwiki dl.file dt {
76    font-weight: bold;
77}
78
79/* images */
80.dokuwiki img {
81    border-width: 0;
82    vertical-align: middle;
83}
84.dokuwiki img.media {
85    margin: .2em 0;
86}
87.dokuwiki img.medialeft {
88    margin: .2em 1em .2em 0;
89}
90.dokuwiki img.mediaright {
91    margin: .2em 0 .2em 1em;
92}
93.dokuwiki img.mediacenter {
94    margin: .2em auto;
95}
96
97.dokuwiki blockquote {
98    padding: 0 10pt;
99    margin: 0;
100    border: solid #ccc;
101    border-width: 0 0 0 2pt;
102}
103[dir=rtl] .dokuwiki blockquote {
104    border-width: 0 2pt 0 0;
105}
106
107/* tables */
108.dokuwiki table {
109    border-collapse: collapse;
110    empty-cells: show;
111    border-spacing: 0;
112    border: 1pt solid #ccc;
113}
114.dokuwiki th,
115.dokuwiki td {
116    padding: 3pt 5pt;
117    margin: 0;
118    vertical-align: top;
119    border: 1pt solid #666;
120    text-align: left;
121}
122[dir=rtl] .dokuwiki th,
123[dir=rtl] .dokuwiki td {
124    text-align: right;
125}
126.dokuwiki th {
127    font-weight: bold;
128}
129
130
131/*____________ a bit of layout ____________*/
132
133#dokuwiki__header {
134    border-bottom: 2pt solid #ccc;
135}
136#dokuwiki__header h1 {
137    font-size: 1.5em;
138}
139#dokuwiki__header h1 a {
140    text-decoration: none;
141}
142#dokuwiki__header h1 img {
143    float: left;
144    margin-right: .5em;
145}
146[dir=rtl] #dokuwiki__header h1 img {
147    float: right;
148    margin-right: 0;
149    margin-left: .5em;
150}
151.dokuwiki div.footnotes {
152    clear: both;
153    border-top: 1pt solid #000;
154    margin-top: 10pt;
155}
156