Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidebar.css « css « static - github.com/niklasbuschmann/contrast-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdfd436875fc8cb232b10e13e08f3cd0f660415a (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
body {
  font-size: 1.08em;
  margin-left: 16em;
  overscroll-behavior: none;
}

body > article, body > footer {
  margin: 0 5em;
  padding: 2em 0;
  max-width: 50em;
}

body > header {
  display: block;
  position: fixed;
  background: #17181c;
  color: #fff;
  border: none;
  box-shadow: none;
  opacity: .98;
  margin: 0;
  padding: 2.2em 2em;
  width: 12em;
  top: 0;
  bottom: 0;
  left: 0;
}

nav {
  margin: 0 -2em;
}

nav a {
  display: block;
  margin: 0;
  padding: .5em 2em;
}

nav a:hover, nav a.selected {
  background: #212228;
  text-decoration: inherit;
}

body > header > a {
  display: block;
  font-size: 1.5em;
  margin-bottom: 1em;
}

article header h1 {
  font-size: 2em;
}

.description {
  margin: 2em 0;
}

.hidden {
  display: inline-block;
}