File size: 1,142 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
@import "@automattic/components/src/styles/typography";
@import "@wordpress/base-styles/breakpoints";
.section-patterns-info {
display: flex;
gap: 24px;
overflow: auto;
scroll-snap-type: x proximity;
scroll-padding-left: 24px;
max-width: 1220px;
margin: 0 auto;
padding: 0 24px;
}
.section-patterns-info__item {
background: #3c434a;
border-radius: 2.5%;
box-sizing: border-box;
flex: 1;
min-width: 280px;
padding: 32px 24px 48px;
scroll-snap-align: start;
@media (max-width: $break-xlarge) {
padding: 32px 24px 24px;
}
.section-patterns-info__item-image {
border-radius: 50%;
background: #1d2327;
width: 64px;
height: 64px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 96px;
}
.section-patterns-info__item-title {
font-family: $font-recoleta;
font-size: rem(32px);
color: var(--studio-white);
line-height: 1.25;
letter-spacing: -0.32px;
min-height: 2.5em;
padding-bottom: 12px;
}
.section-patterns-info__item-description {
font-family: $font-sf-pro-text;
font-size: rem(16px);
color: #c3c4c7;
line-height: 1.5;
letter-spacing: -0.32px;
}
}
|