-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.css
54 lines (45 loc) · 870 Bytes
/
nav.css
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
42
43
44
45
46
47
48
49
50
51
52
53
54
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
body {
font-family: "Montserrat", sans-serif;
background-color: #f2ceff;
font-size: 1.8rem;
}
html {
font-size: 62.5%; /* 10px = 62.5% */
}
.main-nav {
height: 9rem;
}
.navlinks {
list-style: none;
float: left;
line-height: 9rem;
margin: 0;
padding: 0;
}
.navlinks li {
display: inline-block;
margin: 0.1rem 2rem;
}
.navlinks li a {
color: #e31717;
text-decoration: none;
transition: all 0.3s linear 0s;
text-transform: uppercase;
}
.navlinks li a:hover {
color: white;
padding-bottom: 0.7rem;
border-bottom: 0.2rem solid white;
}
/* Responsive */
@media(max-width : 998px) {
html {
font-size: 50%;
}
}
@media(max-width : 768px) {
html {
font-size: 40%;
}
}