forked from hschne/git-aliases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
print.css
64 lines (51 loc) · 772 Bytes
/
print.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
:root {
--black: #2B2C27;
}
body {
width: 297mm;
height: 209mm;
}
@page {
margin: 0.5cm;
}
header h3 {
display: none;
}
header {
text-align: center;
}
footer {
display: none;
}
body {
font-family: 'Roboto Mono', Arial, sans-serif;
font-size: 0.9em;
}
.container {
columns: 4 350px;
}
table {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
}
td, th {
border: 1px solid black;
height: 25px;
}
th {
font-weight: bold;
background-color: #F8F8F0;
}
td {
padding-left: 0.5em;
}
td:first-child {
width: 60px;
}