summary refs log tree commit diff
path: root/style.css
blob: 3cd652de8ce6e5bd11b8148cab906f2203d5a357 (plain) (blame)
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
@media (prefers-color-scheme: light) {
  :root {
    --link-color: #81a2be;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --link-color: #cc6666;
  }
}

body {
  font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium",
    "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

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

dt {
  font-style: italic;
}

code {
  white-space: pre;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
}

.center {
  text-align: center;
}

.image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

Consider giving Nix/NixOS a try! <3