-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct_details.css
65 lines (57 loc) · 1.13 KB
/
product_details.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
/* Product Container */
.product-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Product Image */
.product-image {
width: 100%;
max-width: 50vw;
max-width: 400px;
height: 50vh;
margin-bottom: 20px;
}
/* Product Title */
.product-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
/* Product Description */
.product-description {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
}
/* Product Price */
.product-price {
font-size: 20px;
font-weight: bold;
color: #333;
}
.main p{
color: #333 !important;
}
/* Product Button */
.product-button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #333;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.product-button:hover {
background-color: #0056b3;
}
@media screen and (max-width: 575px){
.product-image {
max-width: 100%;
height: 40vh !important;
}
}