This commit is contained in:
Roman Pyrih
2025-08-05 15:41:08 +02:00
parent 807c9b262f
commit e374c3c489
41 changed files with 599 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
border-radius: 2px;
width: 10px;
transition: all 250ms ease-in-out;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background: var(--e-n-carousel-dots-normal-color);
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
width: 40px;
}
.parallax-box {
height: 480px;
overflow: hidden;
}/*# sourceMappingURL=custom.css.map */

View File

@@ -0,0 +1 @@
{"version":3,"sources":["custom.scss","custom.css"],"names":[],"mappings":"AAEE;EACC,kBAAA;EACA,WAAA;EACA,iCAAA;ACDH;ADGG;EACC,iDAAA;ACDJ;ADIE;EACC,WAAA;ACFH;;ADOA;EACC,aAAA;EACA,gBAAA;ACJD","file":"custom.css"}

View File

@@ -0,0 +1,21 @@
.swiper-pagination {
&.swiper-pagination-bullets {
.swiper-pagination-bullet {
border-radius: 2px;
width: 10px;
transition: all 250ms ease-in-out;
&:hover {
background: var(--e-n-carousel-dots-normal-color);
}
}
.swiper-pagination-bullet-active {
width: 40px;
}
}
}
.parallax-box {
height: 480px;
overflow: hidden;
}