-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.css
77 lines (77 loc) · 1.38 KB
/
product.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
/* tambah */
.product-list{
background-color: #dfe6e9;
padding: 3em;
}
.product-list .card{
background-color: white;
border-radius: 10px;
font-family: 'Poppins';
padding: 1em;
box-shadow: 0px 10px 5px #b2bec3;
text-align: center;
}
.card .title{
font-size: 18px;
font-weight: bold;
padding-bottom: 10px;
}
.card img{
max-width: 100%;
border-radius: 5px;
}
.card .text{
text-align: left;
margin-left: 2em;
margin-bottom: 0.9em;
font-size: 15px;
}
.buy-button{
background-color: #1e232b;
border: none;
padding: 0.5em;
border-radius: 5px;
}
.buy-button a{
color: #fff;
text-decoration: none;
border: none;
padding: 0.5em;
border-radius: 5px;
font-weight: bold;
}
.buy-button a:hover{
color: #ff3d00;
}
.product-container{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 40px;
}
.align-center{
text-align: center;
padding-bottom: 15px;
text-transform: uppercase;
}
.insert-item a{
color: #fff;
text-decoration: none;
background-color: #1e232b;
border: none;
padding: 0.5em;
border-radius: 5px;
font-weight: bold;
}
.insert-item a:hover{
color: #ff3d00;
}
.label{
font-family: 'Montserrat', sans-serif;
margin-left: 8px;
font-weight: bold;
}
.edit-pict{
margin: 0px 8px;
max-width: 25%;
}