This commit is contained in:
2026-03-12 14:16:29 +01:00
parent 78f5c29ff6
commit da1eb7dca9
8 changed files with 1214 additions and 9 deletions

View File

@@ -61,11 +61,8 @@ body .hotspot-mapa {
height: 18px;
--r: 3px;
-webkit-mask: linear-gradient(
0deg,
#0000 calc(3 * var(--r) / 2),
#000 0
),
-webkit-mask:
linear-gradient(0deg, #0000 calc(3 * var(--r) / 2), #000 0),
radial-gradient(
var(--r) at 50% calc(100% - 2 * var(--r)),
#000 98%,
@@ -142,3 +139,38 @@ body .hp-slider-cars {
}
}
}
.hp-number-box {
.elementor-number-box-number {
position: relative;
&::before {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
width: 1px;
height: 100svh;
background: rgba(0, 0, 0, 0.1);
}
}
}
.contact-tiles {
> .elementor-element {
&:not(:nth-child(5n)) {
border-right: 1px solid rgba(255, 255, 255, 0.3);
}
&:nth-child(n + 6):nth-child(5n + 1)::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 500%;
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
}
}