-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.css
74 lines (60 loc) · 978 Bytes
/
test.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
@page {
margin: 0.5in;
}
body {
font-family: Georgia, 'Times New Roman', serif;
font-size: 11pt;
}
.boxed {
background-color: green;
border: 1px solid #333;
color: #fff;
padding: 0.25em 1em;
}
.boxed.thick {
padding: 1em;
}
.split-view {
display: flex;
align-items: center;
justify-content: space-between;
}
#gridContainer .row {
display: flex;
align-items: flex-start;
justify-content: space-around;
margin-bottom: 2em;
}
table.chart {
border-collapse: collapse;
}
table.chart th,
table.chart td {
border: 1px solid #ccc;
padding: 0.2em;
}
table.chart .filled {
background-color: #f80;
}
table.chart thead th {
transform: rotate(-90deg);
height: 72px;
}
table.chart thead th:first-child {
border: none;
}
table.chart tbody td {
text-align: center;
}
.paragraphs {
page-break-before: always;
}
.paragraphs p {
padding: 0 1em;
}
footer {
color: #777;
font-size: 80%;
margin-top: 25px;
text-align: center;
}