This commit is contained in:
Roman Pyrih
2026-03-25 15:55:26 +01:00
parent 7c9eab2ae0
commit 4ad3303b18
3 changed files with 72 additions and 2 deletions

View File

@@ -109,3 +109,73 @@ p {
padding: 8px 12px;
}
}
.title-line {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
column-gap: 16px;
&::before,
&::after {
content: '';
width: 100%;
height: 1px;
display: block;
background: #dadee2;
}
}
.offer-tile {
background: #fff;
border-radius: 8px;
border: 1px solid #dadee2;
overflow: hidden;
align-items: center;
justify-content: center;
padding: 16px;
transition: all 300ms ease-in-out;
&:hover {
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
0 4px 6px -4px rgb(0 0 0 / 0.1);
border-color: #c1e3f3;
.elementor-widget-icon {
.elementor-icon {
svg {
path {
stroke: #01a0d6;
}
}
}
}
}
.elementor-widget-image {
img {
width: 100%;
max-width: 94px;
min-height: 94px;
object-fit: contain;
}
}
.elementor-widget-icon {
position: absolute;
top: 16px;
right: 16px;
line-height: 1;
.elementor-icon {
svg {
path {
stroke: #bec2c5;
transition: all 300ms ease-in-out;
}
}
}
}
}