blob: 272810a96654456c5ea8d2cbb6d16922cccc81c5 (
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
|
/* App Bar */
.app-bar {
height: var(--app-bar-height);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
background-color: var(--colour-header-bg);
color: var(--light-text);
z-index: 2;
position: relative;
}
.app-bar > * {
display: inline-block;
}
.app-bar .lead {
flex-basis: 60px;
}
.app-bar .lead button {
padding: 0;
border: 0;
}
.app-bar .trail {
flex-basis: 60px;
line-height: var(--app-bar-height);
}
.app-bar > a {
line-height: var(--app-bar-height);
font-family: 'Archistico', serif;
letter-spacing: 0.25rem;
}
.app-bar button,
.app-bar button img {
height: var(--app-bar-height);
}
|