123movies-seo/resources/scss/home.scss

103 lines
1.7 KiB
SCSS
Raw Normal View History

2024-09-10 01:33:11 +03:00
.slick-track {
height: auto;
}
2024-09-10 02:14:42 +03:00
2024-09-10 01:33:11 +03:00
@import "../vendor/css/slick.css";
*,*:before,*:after {
box-sizing: border-box;
}
2024-09-10 02:14:42 +03:00
#preloader {
position: fixed;
width: 100%;
height: 100vh;
z-index: 99999;
overflow: visible;
background: #1b1b3f;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
top: 0;
left: 0
}
2024-09-10 01:33:11 +03:00
@media (max-width: 1199px) {
.hero {
margin-top: 70px;
2024-08-28 01:03:34 +03:00
}
2024-09-10 01:33:11 +03:00
}
.hero {
.hero__slider {
display: flex;
flex-direction: row;
2024-09-10 03:48:38 +03:00
// width: auto;
2024-09-10 01:33:11 +03:00
flex-wrap: nowrap;
2024-09-10 02:14:42 +03:00
overflow: hidden;
2024-09-10 04:07:42 +03:00
white-space: nowrap;
2024-09-10 01:33:11 +03:00
}
2024-08-28 01:03:34 +03:00
.movie-slide {
padding-top: 50px;
padding-bottom: 50px;
position: relative;
z-index: 1;
2024-09-10 04:05:32 +03:00
// min-width: 100vw;
2024-08-28 02:37:08 +03:00
// min-height: 695px;
2024-09-10 03:48:38 +03:00
display: flex;
flex-direction: column;
2024-08-28 01:03:34 +03:00
flex-wrap: wrap;
align-items: center;
2024-09-10 03:48:38 +03:00
justify-content: center;
2024-08-28 01:03:34 +03:00
// display: block;
height: 695px;
2024-09-10 02:14:42 +03:00
}
.movie-slide:after {
position: absolute;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
opacity: 0.56;
z-index: -1;
2024-08-28 01:03:34 +03:00
}
}
2024-09-10 02:14:42 +03:00
2024-08-28 01:03:34 +03:00
@media (max-width: 1199px) {
.hero__slider .movie-slide {
height: 600px;
}
}
@media (max-width: 991px) {
.hero__slider .movie-slide {
height: 450px;
}
}
@media (max-width: 767px) {
.hero__slider .movie-slide {
height: 400px;
}
}
@media (max-width: 575px) {
.hero__slider .movie-slide {
height: 290px;
}
}
@media (max-width: 400px) {
.hero__slider .movie-slide
{
height: 195px;
}
}