aboutsummaryrefslogtreecommitdiff
path: root/static/css/style.css
blob: 87329479deb1d60a749c70189a4afe3f24aea84b (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
h1 canvas {
  width: 64px;
  height: 64px;
  display: inline-block;
  background-color: gainsboro;
}

ul {
  list-style: square;
}

h1, h2, h3, h4, p, ul {
  max-width: 30em;
}

p {
  font-size: 1.125em;
}

blockquote {
  border-left: 5px solid lightgray;
  padding-left: 5px;
}

@media (prefers-color-scheme: dark) {
  body {
    color: white;
    background-color: black;
  }

  a {
    color: #5dc1fd;
  }

  a:visited {
    color: #ed6eff;
  }
}