summary refs log tree commit diff
path: root/resources/style.css
blob: c0266f4e7bf8a262b6ebaaf7b46e77989287f80c (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
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #191316;
}

body {
  min-height: 100vh;
  background: #715a7f;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

h1 > aside {
  display: inline-block;
  font-size: .5em;
  font-weight: 100;
  font-style: italic;
  opacity: .6;
  margin-left: 8px;
}

ul > li:not(:last-child) {
  margin-bottom: 8px;
}

a {
  color: white;
  opacity: .8;
}

a[href^="https:"],
a[href^="http:"],
a[href^="//"] {
  color: #fdd7ff;
}