aboutsummaryrefslogtreecommitdiff
path: root/src/styles/Navbar.css
blob: e17decd1bba7e576d121e9be0a495a2d109c290d (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
nav {
    font-weight: 300;
    padding-top: 2vh;
    padding-bottom: 4.5vh;
}
ul.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4vh;
}

a.nav-link {
    font-size: 2vh;
}

a.nav-link:hover {
    color: #9ECD9D;
    transition: ease-in-out 0.1s;
}

a.nav-link:active {
    color: #609460;
}