Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 navbar.css

View raw Download
text/plain • 561 B
ASCII text
        
            
1
.navbar {
2
display: flex;
3
align-items: center;
4
justify-content: space-between;
5
background: var(--color-navbar);
6
height: var(--height-navbar);
7
box-shadow: var(--shadow-navbar);
8
border: var(--shadow-navbar);
9
padding: var(--padding-navbar);
10
border-radius: var(--radius-navbar);
11
color: var(--color-navbar-text);
12
z-index: 1;
13
}
14
15
.navbar ul {
16
display: flex;
17
list-style: none;
18
gap: var(--gap-navbar);
19
}
20
21
.navbar {
22
width: 100%;
23
}
24
25
.navbar :is(:any-link, a:hover:visited) {
26
color: var(--color-navbar-link);
27
}