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
80
81
|
/* header */
header {
height: 3.125rem;
font-size: 0.875rem;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background: rgba(32,16,64,0.8);
color: white;
z-index: 50;
position: relative;
}
header b {
font-weight: 900;
}
header a {
color: rgba(255,255,255,0.95);
text-decoration: none;
font-size: 0.875rem;
font-weight: 500;
}
header > div:first-child {
display: flex;
justify-content: flex-start;
align-items: center;
padding-left: 0.5rem;
}
header > div:last-child {
padding-right: 1.5rem;
}
header > div > button {
padding: 0.25rem;
margin: 0 0 0 0.5rem;
background: #000;
border-color: #888;
color: #888;
}
header > div > button:hover {
border-color: #fff;
color: #fff;
}
header > div:first-child a {
padding: 0.5rem;
}
header > div:last-child a {
padding: 0.5rem;
}
header .btn-link:focus,
header .btn-link:hover,
header .btn-link:active,
header a:focus,
header a:hover,
header a:active {
text-decoration: none;
color: white;
}
header a:focus,
header a:hover,
header a:active {
color: white;
}
.menuToggle {
width: 1.625rem;
height: 1.625rem;
cursor: pointer;
line-height: 1;
}
header a.navbar-brand {
font-size: .8rem;
}
header .username {
cursor: pointer;
}
header .salutation {
color: #888;
font-style: italic;
margin: 0 1rem;
}
|