Download all files FTP

This commit is contained in:
2026-04-13 15:50:16 +02:00
parent d8382136b2
commit cb5b386424
6906 changed files with 1956223 additions and 40713 deletions

View File

@@ -31,6 +31,29 @@
}
}
// Karuzela obrazków — stała wysokość, pionowe zdjęcia nie rozciągają slidera
.page-id-55 .elementor-widget-image-carousel {
.swiper {
.swiper-slide {
display: flex;
align-items: center;
justify-content: center;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
}
.swiper-container,
.swiper {
aspect-ratio: 3 / 2;
overflow: hidden;
}
}
.spot {
&.is-reserved {
fill: #f4eba8;
@@ -38,4 +61,47 @@
&.is-sold {
fill: #f54040;
}
&.is-unavailable {
fill: #ffffff;
stroke: #192c44;
stroke-width: 1px;
}
}
.garage-map-legend {
margin-top: 16px;
display: flex;
flex-wrap: wrap;
gap: 24px;
align-items: center;
justify-content: center;
color: #192c44;
font-size: 14px;
line-height: 1.4;
&__item {
display: inline-flex;
align-items: center;
gap: 8px;
}
&__swatch {
width: 18px;
height: 25px;
display: inline-block;
flex: 0 0 18px;
&--sold {
background: #f54040;
}
&--reserved {
background: #f4eba8;
}
&--unavailable {
background: #ffffff;
border: 1px solid #192c44;
}
}
}