-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
86 lines (68 loc) · 1.25 KB
/
stylesheet.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
/* default style */
@media (prefers-color-scheme: dark) {
body {
color: #000; background-color: #fff;
}
}
html, body {
height: 100vh;
margin: 0;
font-family: "Noto Sans", Sans-Serif;
font-size: 10pt;
}
body, p, table, tr, td, a, th {
vertical-align: top;
}
h3 {
font-size: 15pt;
font-weight: bold;
}
a {
font-style: italic;
}
/* ---------- table elements as follows ---------- */
table {
width: 110vh; /* customization */
}
td, th {
padding:4px;
}
tr.alternate-row {
background: #ffffff
}
tr {
page-break-inside: avoid !important;
}
td, th {
border-color: grey
}
td.total-number-cell, td.total-label-cell, td.centered-label-cell {
font-size: 12pt;
font-weight: bold;
}
th.column-heading-left {
text-align: left;
}
td.centered-label-cell, th.column-heading-center {
text-align: center;
}
td.number-header, th.column-heading-right, td.number-cell, td.total-number-cell {
text-align: right;
}
td.neg {
color: red;
}
td.number-cell, td.total-number-cell, td.anchor-cell, td.date-cell {
white-space: nowrap;
}
td.highlight {
background-color: #e1e1e1
}
canvas {
height: 50vh; /* customization */
}
@media print {
html, body {
height: unset;
}
}