File size: 1,560 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 |
:root {
--background-color : #131921;
--yello-color: #F3A847;
--white-color: #fff;
}
#product-slider-container{
background-color: var(--white-color);
margin: 1rem;
position: relative;
z-index: -1;
}
.slider-title{
justify-content: start;
}
.product-slider{
position: relative;
display: flex;
overflow-x: hidden;
scroll-behavior: smooth;
background-color: var(--white-color);
}
.slider-button{
position: absolute;
background-color: transparent;
padding: 2rem .5rem;
border-radius: 0 3px 3px 0;
background-color: #fff;
box-shadow: 0 1px 3px #888;
border: none;
outline: none;
padding-right: 3px;
top: 35%;
z-index: 999;
}
.discount{
background-color: red;
color: white;
padding: .2rem;
margin: 0 .2rem;
font-weight: 600;
font-size: .9rem;
}
.dealOfTheDay{
color: red;
padding: .2rem;
margin: 0 .2rem;
font-weight: 600;
font-size: .9rem;
}
.product-card{
display: flex;
flex-direction: column;
padding: .5rem;
width: fit-content;
color: black;
}
.card-img{
background-color: #F7F8F8;
display: flex;
justify-content: center;
}
.product-card-img{
width: 100%;
}
.product-discription{
text-overflow: ellipsis;
width: 14rem;
height: 5rem;
}
.product-name{
font-size: 14px;
color: #2d2929;
}
.slierCarousel{
background-color: #fff;
margin: 0 1rem;
}
.sffsd{
display: flex;
justify-content: start;
align-items: center;
padding: 5px ;
margin: 1rem;
} |