blob: 24b24111bef2321d7023c8f5b571ebfbe8f76579 (
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
|
:root {
--toolbar-height: 2.5rem;
}
.toolbar {
color: #5d5d5d;
align-items: center;
background-color: #fafafa;
box-shadow: 0 1px 0 #e1e1e1;
display: flex;
font-size: 0.75rem;
height: var(--toolbar-height);
justify-content: flex-start;
position: sticky;
top: var(--navbar-height);
z-index: 1;
}
.toolbar a,
.toolbar a:visited {
color: inherit;
}
.navigation-toggle {
background: url(../img/menu.svg) no-repeat 50% 47.5%;
background-size: 49%;
border: none;
outline: none;
cursor: pointer;
display: block;
height: 2.5rem;
padding: 0;
width: 2.5rem;
margin-right: -0.25rem;
}
.navigation-toggle::-moz-focus-inner {
border: none;
}
@media screen and (min-width: 1024px) {
.navigation-toggle {
display: none;
}
}
.navigation-toggle.is-active {
background-image: url(../img/back.svg);
background-size: 41.5%;
}
.home-link {
background: url(../img/home-o.svg) no-repeat 50% 45%;
background-size: 50%;
display: block;
height: 2.5rem;
padding: 0;
width: 2.5rem;
}
.home-link:hover,
.home-link.is-current {
background-image: url(../img/home.svg);
}
.edit-this-page {
display: none;
padding-right: 0.5rem;
}
@media screen and (min-width: 1024px) {
.edit-this-page {
display: block;
}
}
.toolbar .edit-this-page a {
color: #8e8e8e;
}
|