blob: 46004376acb1b159c922ab8f9572ebb486475dea (
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
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
|
#navigationBar {
align-items: center;
background-color: #00000000;
display: flex;
gap: 1rem;
justify-content: center;
left: 50vw;
padding: 1rem;
position: absolute;
top: 0;
transform: translateX(-50%);
user-select: none;
width: 100vw;
z-index: 1;
body.about & {
--foregroundColour: #FFFFFF;
}
body.benoit & {
--foregroundColour: #FFFFFF;
}
body.bowshock & {
--foregroundColour: #FFFFFF;
}
body.bzipper & {
--foregroundColour: #B4202D;
}
body.eas & {
--foregroundColour: #00291B;
}
body.luma & {
--foregroundColour: #FFFFFF;
}
body.pollex & {
--foregroundColour: #FFFFFF;
}
a {
color: var(--foregroundColour);
font-weight: bold;
text-decoration-color: #00000000;
transition: text-decoration-color 0.125s;
&:hover {
cursor: pointer;
}
&:hover {
text-decoration-color: var(--foregroundColour);
transition: text-decoration-color 0.125s;
}
}
.separator {
background-color: var(--foregroundColour);
border-radius: 0.25rem;
height: 0.25rem;
width: 1rem;
}
}
|