blob: 6b17412b0a6eab472c74b365a9b1894d3e6c4e11 (
plain) (
blame)
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
|
#navigationBar {
align-items: center;
background-color: #00000000;
display: flex;
gap: 1rem;
justify-content: center;
position: absolute;
top: 1rem;
user-select: none;
width: 100%;
z-index: 1;
a, p {
color: var(--pageHighlightColour);
cursor: pointer;
font-weight: bold;
text-decoration: underline;
text-decoration-color: #00000000;
transition: text-decoration-color 0.125s;
width: fit-content;
&:hover {
text-decoration-color: var(--pageHighlightColour);
transition: text-decoration-color 0.125s;
}
}
#themeToggler {
display: block;
left: 1rem;
position: absolute;
}
.separator {
background-color: var(--pageHighlightColour);
border-radius: 0.125rem;
height: 0.25rem;
width: 1rem;
}
}
|