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: ad55dab7a484a3a729ab220439a36af140a4d57f (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
body {
  font-size: 1.08em;
  margin-left: 16em;
}

body > article {
  margin: 0 4em;
  padding: 2em 0;
  max-width: 55em;
}

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 {
  font-family: "PT Serif", Georgia;
  font-size: 2.2em;
  display: block;
  margin: 0 0 1.5rem;
}

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

header > div {
  position: absolute;
  margin: 2em 0;
  bottom: 0;
}

.hidden {
  display: inline-block;
}