You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/views/segments/index/MainCategoriesSlider/MainCategoriesSlider.scss

44 lines
858 B
SCSS

.MainCategoriesSlider {
// scss
h1{
font-size: 25px;
font-weight: 400;
}
padding: 3rem 0;
border-radius: var(--xshop-border-radius);
overflow: hidden;
.main-category{
overflow: hidden;
display: block;
width: 100%;
img{
width: 100%;
height: 400px;
object-fit: cover;
position: relative;
z-index: 5;
transition: 500ms;
}
h4{
background: var(--xshop-primary);
color: var(--xshop-diff);
padding: 5px;
text-align: center;
font-weight: 200;
position: relative;
z-index: 7;
margin: 0;
}
&:hover{
img{
transform: scale(1.2);
}
}
}
}