File size: 1,293 Bytes
f5071ca |
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
.Offer-div {
max-width: 1550px;
display: flex;
flex-direction: column;
}
.Product-All-Info {
display: flex;
flex-direction: row;
margin-top: 20px;
height: 76vh;
}
.Offer-div img {
max-width: 29%;
max-height: 50%;
margin-right: auto !important;
margin-left: auto !important;
margin-top: 10px;
}
.Product-Img {
max-width: 350px;
max-height: 550px;
}
.Product-Info {
width: 50%;
}
.Product-title {
padding: 8px;
font-size: 140%;
font-weight: 600;
word-spacing: 1px;
line-height: 34px;
}
.hr {
margin-left: auto !important;
margin-right: auto !important;
}
.Product-price {
height: 90px;
width: 100%;
list-style: none;
}
.Product-description {
width: 94%;
font-size: 90%;
margin-left: auto !important;
margin-right: auto !important;
padding: 10px;
margin-top: 5px;
}
.Cart-Option {
width: 20%;
max-height: 550px;
display: flex;
justify-content: center;
}
.Cart-div {
width: 250px;
height: 300px;
border: 1px solid rgb(196, 193, 193);
border-radius: 7px;
}
.Cart-div-body {
width: 100%;
height: 80%;
display: flex;
justify-content: center;
align-items: flex-end;
}
.Cart-div-body button {
width: 55%;
height: 15%;
font-size: 85%;
text-align: center;
background-color: #f1c75c;
border-radius: 5px;
}
.ion-ios-cart {
font-size: 110%;
}
|