This commit is contained in:
Roman Pyrih
2025-07-11 17:22:53 +02:00
parent 6cc21f1d2e
commit 20ff462d47
4 changed files with 137 additions and 1 deletions

View File

@@ -7,4 +7,63 @@
}
}
}
.swiper-pagination {
.swiper-pagination-bullet {
width: 30px;
height: 3px;
border-radius: 0;
}
}
}
.home-card {
.elementor-image-box-wrapper {
.elementor-image-box-content {
padding: 25px;
.elementor-image-box-title {
position: relative;
margin-top: 0;
margin-bottom: 20px;
&::before {
content: '';
position: absolute;
left: 0;
bottom: -4px;
width: 40px;
height: 2px;
background: var(--e-global-color-accent);
}
}
.elementor-image-box-description {
padding-top: 0;
margin-bottom: 20px;
}
.elementor-image-box-link {
position: relative;
padding-left: 25px;
color: #000;
font-size: 12px;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
transition: all 0.3s ease-in-out;
&:hover {
color: var(--e-global-color-accent);
}
&::before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 15px;
height: 3px;
background: var(--e-global-color-accent);
transform: translate(0, -50%);
}
}
}
}
}