forked from tonioloewald/Foldermark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint.css
More file actions
74 lines (60 loc) · 1008 Bytes
/
print.css
File metadata and controls
74 lines (60 loc) · 1008 Bytes
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
@page {
margin: 0.75in;
}
html {
background: white;
color: black;
}
body {
font-family: Cochin, Palatino, Book Antiqua, Serif;
}
#nav, #head, span.title, div.ad, #home_link, #home_link a, #home_link a:after, #breadcrumbs {
display: none;
}
code, pre {
font-family: Menlo, Monaco, Courier New, Monospace;
font-size: 70%;
}
pre {
border-left: 2px solid #888;
padding-left: 10px;
}
table {
border-collapse: collapse;
border: 1px solid #ddd;
}
th, td {
padding: 2px 6px;
vertical-align: top;
}
td {
text-align: center;
}
th {
background: #ddd;
}
.last_modified:before {
content: "Last Modified: "
}
.last_modified {
display: block;
text-align: right;
font-size: 80%;
font-style: italic;
}
/* Note that the url is usually printed by the browser anyway */
.ext, .title, .url {
display: none;
}
a {
color: black;
font-weight: bold;
text-decoration: none;
}
a:after {
position: relative;
left: 6px;
border-bottom: 1px solid #888;
content: attr(href);
margin-right: 12px;
}