summaryrefslogtreecommitdiff
path: root/ui/styles/app-bar.css
blob: eda9bdc05297252d3f54a38ad4fd8457ba097b2d (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
/* 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);
}

.app-bar > * {
  display: inline-block;
}

.app-bar .lead {
  flex-basis: 60px;
}

.app-bar .trail {
  flex-basis: 60px;
  line-height: var(--app-bar-height);
}

.app-bar > a {
  line-height: var(--app-bar-height);
  font-family: "Archistico";
  letter-spacing: 0.25rem;
}

.app-bar a {
  text-decoration: none;
}

.app-bar button,
.app-bar button img {
  height: var(--app-bar-height);
}