-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
72 lines (59 loc) · 1.38 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
@media print {
@page {
margin: 1.25%;
margin-top: 2.5%;
}
@page :first {
margin-top: 1.25%;
}
}
@font-face {
font-family: "Fira Sans";
src: url('fonts/fira/eot/FiraSans-Regular.eot');
src: url('fonts/fira/eot/FiraSans-Regular.eot') format('embedded-opentype'),
url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype');
}
:root {
--background-color: white;
--text-color: black;
--secondary-color: rgb(240 240 240);
}
body {
background-color: var(--background-color);
color: var(--text-color);
font-family: 'Fira Sans', sans-serif;
font-size: 10pt;
}
.main-content {
max-width: 297mm;
place-items: center;
}
.section {
page-break-inside: avoid;
}
.section-box {
background-color: var(--secondary-color);
border-radius: 0.75rem;
padding: 0.75rem;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
}
a:link { text-decoration: none; }
a { color: inherit !important; }
.tag {
background-color: rgba(0, 0, 0, 0.075);
border-radius: 0.5rem;
padding: 0.1125rem;
margin: 0.1125rem;
display: inline-block;
font-size: 0.6875rem;
}
.img {
height: 2rem;
border-radius: 1.5rem;
}
.half-br {
line-height: 50%;
}