aboutsummaryrefslogtreecommitdiff
path: root/public/global.css
blob: eb955398bb71d14f1a9f58d8bfc0254b024dd92a (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
:root {
  --base: #000000;
  --overlay-1: #7c7c7c;
  --text: #ffffff;
  --accent: #ff7777;
}

body {
  margin: 0;
  background-color: var(--base);
  color: var(--text);
  font-family: monospace;
  font-size: 16px;
}

main {
  margin-inline: auto;
  max-width: 1000px;
  padding: 1rem;
}

header,
main,
footer {
  padding: 1rem;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

header,
footer {
  text-align: center;
  margin: 1rem 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

footer div.badges {
  margin: 1rem auto;
  max-width: 1000px;
}

footer div.badges > a,
footer div.badges > img {
  display: inline-block;
  margin-inline: 5px;
  text-decoration: none;
}

footer div.badges img {
  width: 88px;
  height: 31px;
}

footer div.git-hash {
  color: var(--overlay-1);
  margin: 0.5em;
  font-size: 0.8em;
}

hr {
  border-color: var(--overlay-1);
}