aboutsummaryrefslogtreecommitdiff
path: root/styles/navbar.css
blob: 97986e9d0a2987c49501525bde8ee0039e0331b8 (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
.navbarItem .inner {
	background-color: var(--oxford-blue);
	color: var(--almond);

	padding: 8px;
	border-radius: 8px;

	transition-property: background-color, color;
	transition-duration: .15s;

	position: relative;
}

.navbarItem {
	text-decoration: none;
	display: block;
}

.navbarItem.indentLevel0 { margin-bottom: 12px; }

.navbarItem.active .inner,
.navbarItem:hover .inner {
	background-color: var(--heliotrope-gray);
	color: var(--oxford-blue);
}

.navbarItem.chapter .inner {
	background-color: transparent;
	color: var(--fg);
	/* box-shadow: inset 0 0 0 1px #ff00ff; */
	padding: 4px 0;
	overflow: visible;
}

.navbarItem span {
	vertical-align: top;
	margin-left: 8px;
	margin-top: 3px;
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: calc(100% - 32px);
}
.navbarItem.chapter span {
	margin-top: 1px;
}

.navbarItem.chapter .chapterChildren {
	transition-property: height;
	transition-duration: .3s;

	overflow: hidden;
}
.navbarItem.chapter .chapterChildren.collapsed {
	height: 0;
}

.navbarItem .inner {
	height: 24px;
}

.navbarItem > div > svg {
	vertical-align: super;
}