-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.css
79 lines (76 loc) · 1.63 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
78
79
/* SECTION 1 */
.product-heading{
width: 100%;
height: 100px;
display: flex;
align-items: center;
}
.product-heading .product-head-container{
margin: 20px;
}
.product-heading .product-head-container h1{
font-size: 30px;
font-weight: bold;
color: #121212;
}
/* SECTION 2 */
.product-detail {
width: 100%;
height: 700px;
}
.product-detail .product-container {
margin: 20px;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.product-detail .product-container .product-picture{
width: 50%;
}
.product-detail .product-container.product-picture img{
border-radius: 15px;
box-shadow: 0px 0px rgba(66, 66, 66, 0.1);
}
.product-detail-body{
width: 50%;
}
.product-detail-body .product-title{
font-size: 25px;
font-weight: 500;
color: #121212;
}
.product-detail-body .product-price {
margin-top: 10px;
font-size: 28px;
font-weight: 500;
}
.product-detail-body .product-about {
margin-top: 10px;
color: #121212;
}
.product-detail-body .product-about h4 {
font-size: 20px;
font-weight: 500;
color: #121212;
}
.product-detail-body .buttons {
margin-top: 20px;
display: flex;
gap: 2px;
}
.product-detail-body .buttons .add-to-cart{
width: 50%;
border: none;
background-color: #ffd500;
color: rgb(0, 0, 0);
padding: 8px;
border-radius: 10px;
}
.product-detail-body .buttons .buy-now{
width: 50%;
border: none;
background-color: #ffa41c;
color: rgb(0, 0, 0);
padding: 8px;
border-radius: 10px;
}