-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (96 loc) · 1.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@import url(https://fonts.googleapis.com/css?family=Montserrat:500);
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
li,a,button{
font-family:"Montserrat",sans-serif;
font-weight: 500;
font-size: 14px;
color: #edf0f1;
text-decoration: none;
}
header{
width: auto;
height: 40px;
background-color: rgb(37, 37, 37);
display: flex;
justify-content: flex-end;
align-items: center;
padding: 30px 10%;
}
.nav__links{
list-style: none;
}
.nav__links li{
display: inline-block;
padding: 0px 20px;
}
.nav__links li a{
transition: all 0.3 ease 0s;
}
.nav__links li a:hover{
color:rgb(0, 185, 185);
}
button{
margin-left: 80px;
padding: 9px 25px;
background-color: rgb(0, 185, 185);
border: none;
border-radius: 40px;
cursor: pointer;
transition: all 0.3 ease 0s;
}
button:hover{
background-color: #000000;
}
.vendor{
padding-left: 20px;
}
.fa-solid{
padding-right: 10px;
}
.search-box{
display: flex;
height: 30px;
line-height: 35px;
}
.search-box input{
border: none;
outline: none;
background: #fff;
height: 100%;
padding: 0 10px;
font-size: 15px;
}
.search-box span{
color: rgb(0, 0, 0);
font-size: 16px;
background: #fff;
height: 100%;
padding: 8px;
position: relative;
cursor: pointer;
z-index: 1;
}
.search-box span::after{
height: 100%;
width: 0%;
content: '';
background: rgb(0, 0, 0);
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.search-box span:hover{
color: #fff;
}
.search-box span:hover::after{
width: 100%;
}
.logo{
padding-right: 80px;
width: 210px;
}