-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav-style.css
61 lines (56 loc) · 1.03 KB
/
nav-style.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
55
56
57
58
59
60
61
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'poppins', sans-serif;
}
li,a,button{
font-family: "Montserrat",sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
text-decoration: none;
}
nav{
order: 3;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 10%;
}
.nav_links{
list-style: none;
}
.nav_links li{
display: inline-block;
padding: 0px 20px;
}
.nav_links li:nth-child(1){
padding: 0 20px 0 0;
}
.nav_links li a{
transition: all 0.3s ease 0s;
}
.nav_links li a:hover{
color: #0088a9;
}
button{
margin-left: 20px;
padding: 9px 25px;
background-color: rgba(0, 136, 169, 1);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover{
background-color: rgba(0, 136, 169, 0.8);
}
.cta{
padding: 0 20px 0 0;
order:1;
}
.nav_links li a:visited{
color:maroon;
}