59 lines
821 B
CSS
59 lines
821 B
CSS
.cards__list {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
.cards__item {
|
|
position: relative;
|
|
}
|
|
|
|
.cards__img:hover {
|
|
scale: 1.05;
|
|
transition: scale 0.15s linear;
|
|
}
|
|
|
|
.cards__img {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
@media (min-width: 1720px) {
|
|
.cards__img {
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
|
|
.cards__desc {
|
|
font-weight: 500;
|
|
line-height: 22px;
|
|
}
|
|
|
|
@media (min-width: 1720px) {
|
|
.cards__desc {
|
|
font-size: 20px;
|
|
line-height: 26px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
}
|
|
|
|
.cards__desc a {
|
|
color: var(--color-orange);
|
|
}
|
|
|
|
.cards__arrow {
|
|
width: 62px;
|
|
height: 20px;
|
|
position: absolute;
|
|
right: -30px;
|
|
top: -21px;
|
|
background-image: url("/static/img/svg/Arrow23.svg");
|
|
}
|
|
|
|
@media (min-width: 1720px) {
|
|
.cards__arrow {
|
|
right: -45px;
|
|
top: -29px;
|
|
}
|
|
}
|