aboutsummaryrefslogtreecommitdiff
path: root/style/main.scss
blob: 1c03a1ee1b2c56fff3fd15029cc44e053eae11b9 (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
---
---

@import 'normalize';

body {
  background-color: #31363b;
  font-family: 'Roboto Mono', monospace;
  margin: 16px;
  word-wrap: break-word;
}

.logo {
  background-image: url(/assets/logo.png);
  height: 144px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  zoom: 0.6;
  margin-top: 64px;
  margin-bottom: 64px;
}

.page {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
}

nav {
  background-color: #93a1a1;
  overflow-y: auto;

  ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
    padding: 8px;

    a {
      text-decoration: none;
      color: black;
      padding: 8px;
      display: inline-block;
      &:hover, &:focus {
        background-color: #b8c5c5;
        outline: none;
      }
    }
  }

  li.seperator {
    padding: 16px;
    display: inline-block;
  }
}

main {
  padding: 16px;
}

h1, h2, h3 {
  font-size: 1em;
  font-weight: bold;
}

h1::before {
  content: '# ';
}

h2::before {
  content: '## ';
}

h3::before {
  content: '### ';
}