init
Some checks are pending
Deploy / build (push) Has started running

This commit is contained in:
alsaze
2025-12-08 17:04:20 +03:00
parent d1969e34dc
commit c58fce240f
96 changed files with 346 additions and 562 deletions

View File

@@ -60,4 +60,40 @@ html {
position: absolute;
bottom: 200px !important;
--swiper-pagination-bullet-size: 8px
}
.swiper-button-prev,
.swiper-button-next {
width: 40px;
height: 40px;
background: #1e293b;
border-radius: 50%;
}
.swiper-navigation-icon{
display: none;
}
.swiper-button-prev::after,
.swiper-button-next::after {
content: "";
display: block;
width: 20px;
height: 20px;
mask-size: contain;
mask-repeat: no-repeat;
mask-position: center;
background: white;
}
/* Левая стрелка */
.swiper-button-prev::after {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
/* Правая стрелка */
.swiper-button-next::after {
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}