aboutsummaryrefslogtreecommitdiff
path: root/content/style.css
blob: 1f7e24e5c2a1f95ebb01e5d468d48af9b756c84b (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
@import url("https://s.metamuffin.org/static/font-ubuntu/include.css");

:root {
  --bg2: #202020;
  --bg1: #101010;
}

body {
  margin: 3em;
  background-color: var(--bg1);
}

nav,article {
  margin: 1em;
  background-color: var(--bg2);
  padding: 1em;
}

h1 {font-size: xx-large }
h2 {font-size: x-large }
h3 {font-size: large }

p,h1,h2,h3,h4,h5,h6,li { font-family: "Ubuntu", sans-serif; }
h1,h2 { color: #b575ff }
h3 { color: #ff83fd }
p,li { color: white; margin-left: 2em }
a { color: #82a8ff; font-style: italic; text-decoration: underline }
hr { border: 1px solid grey }

pre,code {
  color: #eeeeee;
  font-family: monospace;
  background-color: black;
  border: 0px solid transparent;
  border-radius: 5px;
  padding: 0.2em;
}
pre { margin-left: 4em; margin-right: 4em; overflow-y: auto; }