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