This commit is contained in:
Roman Pyrih
2025-05-20 15:55:55 +02:00
parent 7760ccd0cb
commit f8fabea8b2
26 changed files with 776 additions and 27 deletions

View File

@@ -205,6 +205,12 @@ body {
margin: 0;
cursor: pointer;
&.active {
img {
filter: brightness(0) invert(1);
}
}
img {
width: 100%;
}
@@ -2637,3 +2643,63 @@ body {
}
}
}
.fancybox__slide {
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(1px);
transition: all 300ms ease-in-out;
}
#biogram {
.swiper_biogram {
padding-bottom: 25px;
.swiper-slide {
.slide-img {
img {
height: 100%;
max-height: 150px;
width: auto;
display: block;
margin: 20px auto 10px;
}
}
.slide-text {
p {
color: $cTxtWhite;
line-height: 1;
font-size: 12px;
font-weight: 700;
font-family: Arial, sans-serif;
margin-bottom: 10px;
}
}
}
.swiper-pagination {
bottom: 0;
left: 0;
right: 0;
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
justify-content: space-between;
li {
color: #8b3332;
font-size: 19px;
font-weight: 700;
font-family: 'Arial', sans-serif;
cursor: pointer;
&.active {
color: #f3180c;
}
}
}
}
}