mirror of https://github.com/4xmen/xshop.git
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.
28 lines
488 B
SCSS
28 lines
488 B
SCSS
3 months ago
|
.AutoPlayClips {
|
||
|
padding: 2rem 0;
|
||
|
|
||
|
h1 {
|
||
|
font-size: 27px;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
.autoplay-clip-list {
|
||
|
display: flex;
|
||
|
column-gap: .5rem;
|
||
|
}
|
||
|
|
||
|
.autoplay-clip-item {
|
||
|
transition: 700ms;
|
||
|
flex: 1;
|
||
|
video,img {
|
||
|
width: 100%;
|
||
|
border-radius: var(--xshop-border-radius);
|
||
|
height: 300px;
|
||
|
object-fit: cover;
|
||
|
}
|
||
|
&:hover{
|
||
|
flex-grow: 2;
|
||
|
}
|
||
|
}
|
||
|
}
|