summaryrefslogtreecommitdiff
path: root/platform/www/lib/tpl/dokuwiki/css/print.css
blob: 7197ac1c1428fe75fc4fb3c69cb48efcd4036a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
 * This file provides the styles for printing.
 *
 * @todo: improve and finish
 */

body {
    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;
    background-color: #fff;
    color: #000;
}

/* hide certain sections */
.a11y,
audio,
video,
#dokuwiki__header .tools,
#dokuwiki__aside,
.dokuwiki .breadcrumbs,
.dokuwiki .pageId,
#dw__toc,
h3.toggle,
#dokuwiki__pagetools,
#dokuwiki__footer {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
caption,
legend {
    clear: both;
}
ul {
    list-style: disc outside;
}
ol {
    list-style: decimal outside;
}
ol ol {
    list-style-type: lower-alpha;
}
ol ol ol {
    list-style-type: upper-roman;
}
ol ol ol ol {
    list-style-type: upper-alpha;
}
ol ol ol ol ol {
    list-style-type: lower-roman;
}

a:link,
a:visited {
    text-decoration: none;
    border-bottom: 1pt dotted;
    color: #333;
    background-color: inherit;
}

/* display href after link */
a.urlextern:after,
a.interwiki:after,
a.mail:after {
   content: " [" attr(href) "]";
   font-size: 90%;
}

/* code blocks */
pre {
    font-family: monospace;
}
dl.code dt,
dl.file dt {
    font-weight: bold;
}

mark {
    font-weight: bold;
}

/* images */
img {
    border-width: 0;
    vertical-align: middle;
}
img.media {
    margin: .2em 0;
}
img.medialeft {
    margin: .2em 1em .2em 0;
}
img.mediaright {
    margin: .2em 0 .2em 1em;
}
img.mediacenter {
    margin: .2em auto;
}

blockquote {
    padding: 0 10pt;
    margin: 0;
    border: solid #ccc;
    border-width: 0 0 0 2pt;
}
[dir=rtl] blockquote {
    border-width: 0 2pt 0 0;
}

/* tables */
.dokuwiki div.table {
    margin-bottom: 1.4em;
}
table {
    border-collapse: collapse;
    empty-cells: show;
    border-spacing: 0;
    border: 1pt solid #ccc;
}
th,
td {
    padding: 3pt 5pt;
    margin: 0;
    vertical-align: top;
    border: 1pt solid #666;
}
th {
    font-weight: bold;
    text-align: left;
}
[dir=rtl] th {
    text-align: right;
}


/*____________ a bit of layout ____________*/

#dokuwiki__header {
    border-bottom: 2pt solid #ccc;
}
#dokuwiki__header h1 {
    font-size: 1.5em;
}
#dokuwiki__header h1 a {
    text-decoration: none;
    border-width: 0;
}
#dokuwiki__header h1 img {
    float: left;
    margin-right: .5em;
}
[dir=rtl] #dokuwiki__header h1 img {
    float: right;
    margin-right: 0;
    margin-left: .5em;
}

.dokuwiki div.footnotes {
    clear: both;
    border-top: 1pt dotted #999;
    margin-top: 10pt;
}

.dokuwiki div.docInfo {
    font-size: 90%;
    text-align: right;
    clear: both;
    padding-top: 2pt;
    border-top: 1pt solid #999;
    margin-top: 10pt;
}
[dir=rtl] .dokuwiki div.docInfo {
    text-align: left;
}