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

li {
    margin: 0 1rem;
}

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

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

a:active {
    color: #609460;
}