-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintmobile.css
145 lines (118 loc) · 2.09 KB
/
printmobile.css
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
@media handheld {
#quicknav {
padding: 0 0 0.5em 0;
margin: 0;
width: 100%;
}
#quicknav li {
padding: 0;
margin: 0;
list-style-type: none;
}
#ntnuheader,
#footer,
#meta,
#ntnufooter,
#quicknav_globalnav,
#quicknav_content,
.printOnly {
display: none;
}
}
@media print {
.offscreen,
#header,
#meta,
#footer,
#ntnufooter,
#menu {
display:none
}
#sidebar {
page-break-before: always;
}
body {
font: 10pt Arial, Verdana, Helvetica, sans-serif;
color: black;
}
a {
color: __text__;
background: none !important;
}
#breadcrumbs {
font-size: 8pt !important;
border-bottom: 1pt solid black !important;
padding-bottom: 1em;
}
#breadcrumbs a:after{
content: "" !important;
}
/* --------------------- Text formating -------------------------------- */
/* print links */
a.wikilink1:after,
a.interwiki:after,
a.mail:after,
a.urlextern:after
{
content: " (" attr(href) ")";
font-size: 80%;
color: #000;
}
/* hide print links if JS library is in place*/
html.noted a.interwiki:after,
html.noted a.mail:after,
html.noted a.urlextern:after
{
content: "";
}
/* footnotes */
div.footnotes{
clear:both;
border-top: 1px solid __text__;
padding-left: 1em;
margin-top: 1em;
}
div.fn{
font-size:90%;
}
a.fn_top{
vertical-align:super;
font-size:80%;
}
a.fn_bot{
vertical-align:super;
font-size:80%;
font-weight:bold;
}
acronym{
border: 0;
}
/* ---------- inline tables ------------------- */
table.inline {
font-size: 80%;
background-color: __background__;
border-spacing: 0px;
border-collapse: collapse;
}
table.inline th {
padding: 3px;
border: 1px solid #666;
border-bottom: 2px solid __text__;
}
table.inline td {
padding: 3px;
border: 1px solid #666;
}
.leftalign{
text-align: left;
}
.centeralign{
text-align: center;
}
.rightalign{
text-align: right;
}
.newPage {
page-break-before: always;
}
}