You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
978 B
54 lines
978 B
.product_card{
|
|
/* width: 100vw; */
|
|
height: 240px;
|
|
display: table;
|
|
float: left;
|
|
position: static;
|
|
text-align: center;
|
|
border:1px solid hsl(0, 0%, 100%);
|
|
/* margin-left: 30px;
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;*/
|
|
padding: 20px;
|
|
transition: all 0.2s ease;
|
|
width: 100%;
|
|
}
|
|
|
|
.product_card:hover {
|
|
border:1px solid #d6d6d6;
|
|
filter:blur(0px);
|
|
opacity:1;
|
|
box-shadow:0 8px 20px 0px rgba(0,0,0,0.125);
|
|
}
|
|
|
|
.pictureText_text{
|
|
display: block;
|
|
text-align: left;
|
|
}
|
|
|
|
.product_card_img{
|
|
text-align: center;
|
|
}
|
|
|
|
.product_card_box{
|
|
/*width: 256px; */
|
|
text-align: left;
|
|
}
|
|
|
|
.product_card_footer{
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.product_card_price{
|
|
float: left;
|
|
position: static;
|
|
display: flex;
|
|
margin: 10px 10px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.product_card_video{
|
|
width: 100%;
|
|
} |