-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.css
100 lines (98 loc) · 1.69 KB
/
service.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
*{
font-family: poppins;
margin: 0px;
padding: 0px;
box-sizing: border-box;
scroll-behavior: smooth;
}
ul{
list-style: none;
}
a{
text-decoration: none;
}
body{
margin: 0px;
padding: 0px;
font-family: poppins;
}
::selection{
color:#ffffff;
background-color:#40aa54;}
/*==Navigation=====================================*/
.navigation{
display: flex;
justify-content: space-between;
align-items: center;
padding: 35px;
max-width: 1070px;
width: 100%;
margin: auto;
}
.menu{
display: flex;
}
.menu li a{
padding: 3px 10px;
margin: 0px 15px;
color: #3b3b3b;
font-weight: 500;
letter-spacing: 0.5px;
transition: all ease 0.3s;
}
.logo{
font-size: 1.4rem;
font-weight: 600;
letter-spacing: 1px;
color: #202020;
}
.logo span{
color: #40aa54;
}
.right-nav{
display: grid;
grid-template-columns: auto auto;
grid-gap: 25px;
}
.right-nav a{
width:40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
position: relative;
}
.right-nav .like{
background-color: #fff0ee;
color: #ff6c57;
}
.right-nav .cart{
background-color: #ecf7ee;
color: #4eb060;
}
.right-nav a span{
position: absolute;
top: -7px;
right: -7px;
width:20px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color: #ffffff;
font-size: 0.6rem;
font-weight: 500;
}
.right-nav .like span{
background-color: #ff6c57;
}
.right-nav .cart span{
background-color: #4eb060;
}
.menu li a:hover,
.menu .active{
color: #40aa54;
transition: all ease 0.3s;
}