blob: d5f2de34fcb391d8b5db1647139c18161e6667c6 (
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
|
nav {
position: static;
border-bottom: 2px dashed currentColor;
}
nav .site-icon {
height: 48px;
display: inline-block;
}
nav .site-icon .label { font-weight: 500; }
nav .site-icon .icon {
display: inline-block;
line-height: 0;
margin: 12px 2px;
}
nav .site-icon .icon svg {
width: 24px;
height: 24px;
}
nav .adminmode { opacity: .7; }
nav .nav-item {
display: inline-flex;
height: 48px;
vertical-align: top;
align-items: center;
margin-right: 16px;
}
|