-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (63 loc) · 1.13 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-color: #000;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 100px;
z-index: 100;
}
header .logo img{
max-width: 150px;
}
.navigation{
display: flex;
}
.navigation li{
list-style: none;
margin: 0 10px;
}
.navigation li a{
color: #fff;
text-decoration: none;
font-weight: 500;
letter-spacing: 1px;
}
.navigation li:hover a{
color: #de0611;
}
.search{
position: relative;
width: 300px;
height: 40px;
}
.search input{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
background-color: transparent;
border: 1px solid rgba(255,255,255,0.1);
outline: none;
border-radius: 4px;
padding: 0 10px;
}
.search input::placeholder{
color: #fff;
}
.search .fa-search{
}