-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (48 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700');
*{
border-radius: 0px !important;
border: 0px !important
}
body{
margin: 0px;
font-family: "Poppins", sans-serif;
text-align: left;
background: #e1e1e1 !important;
}
#card-main-container{
padding: 20px;
background: white;
}
#outer-card-container h5 a{
color: black !important;
}
#outer-card-container img:hover{
transform: scale(1.1);
transition: all 1s;
}
.product-tag p:first-child{
background: #1C5D99 !important;
}
.product-tag p:last-child{
background: #F05D5E !important;
}
.product-tag p a{
color: white;
}
#outer-card-container a{
text-decoration: none !important;
}
#outer-card-container .fa{
color: #E94F37;
}
#outer-card-container p{
font-size: 14px !important;
font-weight: 600 !important;
}
@media screen and (min-width: 770px) {
#card-main-container{
display: flex;
align-items: center;
flex-direction: row !important;
}
}