This commit is contained in:
2026-03-19 10:05:20 +01:00
parent da1eb7dca9
commit 9f0b270036
3 changed files with 48 additions and 13 deletions

View File

@@ -3,11 +3,15 @@ body .header-logo {
}
body .header-nav {
width: 100%;
@media (min-width: 1025px) {
width: 100%;
}
}
body .header-box {
max-width: fit-content;
@media (min-width: 1025px) {
max-width: fit-content;
}
}
body p {
@@ -160,17 +164,48 @@ body .hp-slider-cars {
.contact-tiles {
> .elementor-element {
&:not(:nth-child(5n)) {
border-right: 1px solid rgba(255, 255, 255, 0.3);
@media (min-width: 1025px) {
&: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);
}
}
&: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);
@media ((min-width: 768px) and (max-width: 1024px)) {
&:not(:nth-child(3n)) {
border-right: 1px solid rgba(255, 255, 255, 0.3);
}
&:nth-child(n + 4):nth-child(3n + 1)::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 300%;
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
}
@media (max-width: 767px) {
&:not(:nth-child(2n)) {
border-right: 1px solid rgba(255, 255, 255, 0.3);
}
&:nth-child(n + 3):nth-child(2n + 1)::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 200%;
border-top: 1px solid rgba(255, 255, 255, 0.3);
}
}
}
}