aboutsummaryrefslogtreecommitdiff
path: root/src/components/Navbar.css
blob: 7b1a334a6fcdd366f8cb366a4e9d3c353f9438dc (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
nav {
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 30px;
}
ul.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

li.nav-links {
    margin: 0 1rem;
}


a.nav-link {
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFFFF;
}

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

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