-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct.css
67 lines (61 loc) · 1.08 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
body{
font-family: Human BBY Digital, Human Fallback, Arial, Helvetica, sans-serif;
}
body p,body img, body h3, body button, body svg{
cursor: pointer;
}
#filter{
margin-left: 20px;
}
#productPage{
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
gap: 20px;
padding: 20px;
}
#card {
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
padding: 20px;
border-radius: 10px;
}
#pname{
height: 30px;
margin-bottom: 40px;
margin-top: 10px;
}
#pprice{
line-height: 25px;
}
#pbutton{
padding: 5px 10px;
color: white;
font-size: 15px;
font-weight: bold;
cursor: pointer;
border: none;
background-color:#ffe000;
border-radius: 10px;
margin-top: 10px;
color: black;
}
#pbutton:hover{
background-color: yellow;
}
#pimg{
width: 100%;
max-height: 200px;
}
#filter{
margin-top: 3px;
width: 200px;
padding: 8px;
font-size: 16px;
}
hr{
border-top: 0.8px solid gray;
border-bottom: none;
border-left: none;
border-right: none;
width: 100%;
}