-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavBar.css
More file actions
41 lines (36 loc) · 745 Bytes
/
navBar.css
File metadata and controls
41 lines (36 loc) · 745 Bytes
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
#navContainer {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
padding: 1rem;
background-color: var(--color-background);
border-bottom: 1px solid var(--color-border);
}
.navButton {
flex: 1;
text-align: center;
margin: 0.5rem;
}
.navButton a {
font-family: "Rampart One", sans-serif;
font-size: 2.2rem;
text-decoration: none;
padding: 10px;
color: var(--color-accent);
transition: transform 0.1s ease, color 0.1s ease;
display: inline-block;
}
.navButton a:hover {
transform: scale(1.05);
color: var(--color-accent-hover);
}
@media (max-width: 576px) {
#navContainer {
flex-direction: column;
align-items: center;
}
.navButton {
width: 100%;
margin: 0.5rem 0;
}
}