summary refs log tree commit diff
path: root/resources/style.css
blob: 7b727af79e639bc9a1f3c0ec1b3d11cf738376cd (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #211e22;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

nav a {
  opacity: .4;
}

nav a:hover {
  opacity: .8;
}

nav > a:not(:last-child) {
  margin-right: 40px;
}

h1 {
  color: rgba(255,255,255,.9);
}

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

h1 > .subtitle {
  display: block;
  font-size: 20px;
  opacity: .8;
  font-weight: normal;
  font-style: italic;
}

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

ul.posts {
  list-style: none;
}

ul.posts li span {
  display: inline-block;
  min-width: 100px;
  opacity: .5;
  text-align: right;
  margin-right: 10px;
}

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

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

h2 {
  margin-top: 48px;
}