-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.css
79 lines (79 loc) · 1.96 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
.product-heading{
width: 100%;
width: 100px;
display: flex;
align-items: center;
}
.product-heading .product-container{
margin: 20px;
}
.product-heading .product-container h1{
font-size: 30px;
font-weight: bold;
color: #121212;
}
.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-pic{
width:50%;
}
.product-detail .product-container .product-pic img{
border-radius: 15px;
box-shadow: 0 0 10px rgba(50, 48, 48, 0.1);
}
.product-detail .product-container .product-detail-body{
width: 50%;
padding-left: 100px;
}
.product-detail .product-container .product-detail-body .product-title{
font-size: 25px;
font-weight: 500;
color: #121212;
}
.product-detail .product-container .product-detail-body .product-price{
margin-top: 10px;
font-size: 20px;
font-weight: 500;
}
.product-detail .product-container .product-detail-body .product-above{
margin-top: 10px;
color:#121212;
}
.product-detail .product-container .product-detail-body .product-above h4{
font-size: 20px;
font-weight: 500;
color: #121212;
}
.product-detail .product-container .product-detail-body .button{
margin-top: 10px;
font-weight: 500;
display: flex;
gap: 2;
}
.product-detail .product-container .product-detail-body .button .by-now{
width: 50%;
border:none;
background-color:#ffa41c;
color: white;
padding:8px;
border-radius: 10px;
}
.product-detail .product-container .product-detail-body .product-above ul{
padding-left: 40px;
}
.product-detail .product-container .product-detail-body .button .add-cart{
width: 50%;
border:2px solid #ffa41c;
background-color:transparent;
color: #ffa41c;
padding:8px;
border-radius: 10px;
}