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