summaryrefslogtreecommitdiff
path: root/assets/classic.css
blob: 90d0e40d7250b01cfd3efa4217d5f62699ed8bad (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
55
56
57
58
59
60
61
@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-family: 'Josefin Sans', sans-serif;
  font-weight: normal;
}

body {
  color: var(--dark);
  /* font-family: 'Palatino', 'Poly', serif; */
  font-family: 'Poly', serif;
}

a {
  color: var(--dark);
}

a:hover {
  color: #0033cc;
}

hr {
  border: none;
  border-bottom: 1px dotted #999;
}

p {
  line-height: 1.5;
}