summary refs log tree commit diff stats
path: root/src/style.css
blob: c245d20ec6b49363d7715f9d14c698922d81a851 (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
a:link, a:visited {
  color: #005386;
}

ul a {
  text-decoration: none;
}

body {
  margin:40px auto;
  max-width:650px;
  line-height:1.6;
  font-size:18px;
  padding:0 10px
}

img {
  max-width:100%;
  display: block;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #ffffff;
    background: #212121;
    margin:40px auto;
    max-width:650px;
    line-height:1.6;
    font-size:18px;
    padding:0 10px
  }

  h1, h2, h3 {
    line-height:1.2
  }

  a:link, a:visited {
    color: #58a6ff;
  }
  
  ul a {
    text-decoration: none;
  }

  ul a:visited {
    text-decoration: none;
    color: #8e96f0;
  }
}