2019-07-18 14:22:11 +00:00
|
|
|
//
|
|
|
|
// Pages: E-commerce
|
|
|
|
//
|
2019-06-28 08:02:07 +00:00
|
|
|
|
|
|
|
// product image
|
2019-06-27 12:18:58 +00:00
|
|
|
.product-image {
|
2020-05-30 13:06:11 +00:00
|
|
|
@include img-fluid ();
|
2019-06-27 12:18:58 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:02:07 +00:00
|
|
|
// product image thumbnails list
|
2019-07-18 14:22:11 +00:00
|
|
|
.product-image-thumbs {
|
2019-06-27 12:18:58 +00:00
|
|
|
align-items: stretch;
|
2019-07-18 14:22:11 +00:00
|
|
|
display: flex;
|
2019-06-27 12:18:58 +00:00
|
|
|
margin-top: 2rem;
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:02:07 +00:00
|
|
|
// product image thumbnail
|
2019-07-18 14:22:11 +00:00
|
|
|
.product-image-thumb {
|
2019-06-27 12:18:58 +00:00
|
|
|
@include box-shadow($thumbnail-box-shadow);
|
|
|
|
@include border-radius($thumbnail-border-radius);
|
|
|
|
|
|
|
|
background-color: $thumbnail-bg;
|
|
|
|
border: $thumbnail-border-width solid $thumbnail-border-color;
|
|
|
|
display: flex;
|
|
|
|
margin-right: 1rem;
|
|
|
|
max-width: 6.5rem + ($thumbnail-padding * 2);
|
|
|
|
padding: $thumbnail-padding * 2;
|
|
|
|
|
|
|
|
img {
|
2020-05-30 13:06:11 +00:00
|
|
|
@include img-fluid ();
|
2019-06-27 12:18:58 +00:00
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2020-05-30 13:06:11 +00:00
|
|
|
opacity: .5;
|
2019-06-27 12:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:02:07 +00:00
|
|
|
// product share
|
2019-07-18 14:22:11 +00:00
|
|
|
.product-share {
|
|
|
|
a {
|
|
|
|
margin-right: .5rem;
|
|
|
|
}
|
2019-06-27 12:18:58 +00:00
|
|
|
}
|