forked from riliomorsh/code-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (51 loc) · 803 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500&display=swap');
*{
margin:0px;
padding:0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
nav{
width: 100%;
height: 75px;
background-color: #505d61;
line-height: 75px;
padding:0px 100px;
position:fixed;
z-index: 1;
}
nav .logo{
font-size: 30px;
font-weight: bold;
letter-spacing: 1.5px;
}
nav .logo p{
float: left;
color:#fff;
text-transform: uppercase;
}
nav ul{
float: right;
}
nav ul li{
display: inline-block;
list-style: none;
}
nav ul li a{
color:#fff;
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
padding:0px 32px;
}
nav ul li a:hover{
color:#c0d96f;
}
nav ul li .active{
color:#c0d96f;
}
.image img{
width: 100%;
height: 0px auto;
opacity: 0.80;
}