-
Notifications
You must be signed in to change notification settings - Fork 1
/
products.css
80 lines (71 loc) · 1.16 KB
/
products.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
*{
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body{
background-color: #fafafa;
}
h1{
text-align: center;
letter-spacing: 1.1px;
font-weight: 500;
font-size: 34px;
color: #676767;
margin-top: 20px;
}
#cat_sort{
background-color: #F5F5F5;
margin: 40px 8%;
height: 42px;
outline: none;
padding: 7px;
border: 1px solid rgb(133, 133, 133);
font-size: 100%;
color: #676767;
width: 18%;
font-weight: 500;
}
.cont{
display: grid;
grid-template-columns: repeat(4,1fr);
row-gap: 50px;
column-gap: 20px;
margin: 0px 8%;
margin-bottom: 100px;
}
/* .card{
height: 30%;
} */
.cate{
color: #FE5C75;
font-size: 18px;
margin: 5px 0;
}
.title{
color: #333;
margin: 1px;
font-size: 18px;
font-weight: bolder;
line-height: 26px;
cursor: pointer;
}
.desc{
color: #676767;
font-size: 18px;
line-height: 22px;
text-align: left;
padding-right: 10px;
margin: 10px 0px;
}
/* img{
width: 100%;
} */
.card>img{
width: 100%;
}
.read{
margin-top: 10px;
border-bottom: 2px solid #ffa9b6;
color: #333;
}