aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: ba271d6f57f5b5f8223be4235b8d1b75c6896bb6 (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
body {
  color: #212529;
  background: #fff;
  margin: 2% auto;
  font-family: sans-serif;
  max-width: min(95%, 64em);
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

ul.links {
  list-style-type: none;
  font-weight: bold;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}

hr {
  color: #fff;
}

header,
footer {
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #212529;
    color: #f8f9fa;
  }
  a {
    color: #3395ff;
  }
  hr {
    color: #212529;
  }
}