blob: 48d61f7c3fe2aab37c45ec18d15261ac2bcb5766 (
plain)
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
|
@font-face {
font-family: 'Josefin Sans';
src: url('/assets/fonts/josefinsans-regular.woff2') format('woff2'),
url('/assets/fonts/josefinsans-regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poly';
src: url('/assets/fonts/poly-regular.woff2') format('woff2'),
url('/assets/fonts/poly-regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Poly';
src: url('/assets/fonts/poly-regularitalic.woff2') format('woff2'),
url('/assets/fonts/poly-regularitalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
html {
--dark: #222;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Futura', 'Josefin Sans', sans-serif;
font-weight: normal;
}
body {
color: var(--dark);
font-family: 'Palatino', 'Poly', serif;
}
a {
color: var(--dark);
}
a:hover {
color: #0033cc;
}
hr {
border: none;
border-bottom: 1px dotted #999;
}
p {
line-height: 1.5;
}
|