source: documentation/trunk/packages/templates/greenstone-monobook/static/3rd/dokuwiki/print.css@ 30114

Last change on this file since 30114 was 30114, checked in by jmt12, 9 years ago

Updated Greenstone customizations for Detritus, but rearranged to move into separate plugin. Initial checkin of plugins, template, special wiki pages.

File size: 2.7 KB
Line 
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, .dokuwiki .secedit,
20#dokuwiki__pagetools, #dokuwiki__footer {
21 display: none;
22}
23
24.dokuwiki h1, .dokuwiki h2, .dokuwiki h3, .dokuwiki h4, .dokuwiki h5,
25.dokuwiki caption, .dokuwiki legend {
26 clear: both;
27}
28.dokuwiki ul { list-style: disc outside; }
29.dokuwiki ol { list-style: decimal outside; }
30.dokuwiki ol ol { list-style-type: lower-alpha; }
31.dokuwiki ol ol ol { list-style-type: upper-roman; }
32.dokuwiki ol ol ol ol { list-style-type: upper-alpha; }
33.dokuwiki ol ol ol ol ol { list-style-type: lower-roman; }
34
35/* undo icons */
36.dokuwiki a:link, .dokuwiki a:visited {
37 text-decoration: underline;
38 color: #333;
39 background-color: inherit;
40 background-image: none;
41 padding: 0;
42}
43
44/* display href after link */
45a.urlextern:after,
46a.interwiki:after,
47a.mail:after {
48 content: " [" attr(href) "]";
49 font-size: 90%;
50}
51
52/* code blocks */
53.dokuwiki pre {
54 font-family: monospace;
55}
56.dokuwiki dl.code dt, .dokuwiki dl.file dt {
57 font-weight: bold;
58}
59
60/* images */
61.dokuwiki img { border-width: 0; vertical-align: middle; }
62.dokuwiki img.medialeft { margin: .5em 1.5em .5em 0; float: left; }
63.dokuwiki img.mediaright { margin: .5em 0 .5em 1.5em; float: right; }
64.dokuwiki img.mediacenter { margin: .5em auto; display: block; }
65
66/* align table cells */
67.dokuwiki .leftalign { text-align: left; }
68.dokuwiki .centeralign { text-align: center; }
69.dokuwiki .rightalign { text-align: right; }
70
71/* underline */
72.dokuwiki em.u { font-style: normal; text-decoration: underline; }
73.dokuwiki em em.u { font-style: italic; }
74
75div.clearer {
76 clear: both;
77 line-height: 0;
78 height: 0;
79 overflow: hidden;
80}
81
82.dokuwiki blockquote {
83 padding: 0 10pt;
84 margin: 0;
85 border: solid #ccc;
86 border-width: 0 0 0 2pt;
87}
88
89/* tables */
90.dokuwiki table {
91 border-collapse: collapse;
92 empty-cells: show;
93 border-spacing: 0;
94 border: 1pt solid #ccc;
95}
96.dokuwiki th, .dokuwiki td {
97 padding: 3pt 5pt;
98 margin: 0;
99 vertical-align: top;
100 border: 1pt solid #666;
101 text-align: left;
102}
103.dokuwiki th {
104 font-weight: bold;
105}
106
107
108/*____________ a bit of layout ____________*/
109
110#dokuwiki__header {
111 border-bottom: 2pt solid #ccc;
112}
113#dokuwiki__header h1 {
114 font-size: 1.5em;
115}
116#dokuwiki__header h1 a {
117 text-decoration: none;
118}
119.dokuwiki div.footnotes {
120 clear: both;
121 border-top: 1pt solid #000;
122 margin-top: 10pt;
123}
Note: See TracBrowser for help on using the repository browser.