File size: 1,519 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
@import "@wordpress/base-styles/breakpoints";
@import "@automattic/color-studio/dist/color-variables";
@import "@automattic/typography/styles/variables";
@import "@automattic/components/src/styles/typography";
.developer-features-sub-title {
padding-bottom: 16px;
font-weight: 500;
color: $studio-gray-60;
@media (max-width: $break-large) {
padding: 0 32px 16px;
}
}
.developer-features-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 24px;
padding-bottom: 24px;
font-family: $font-sf-pro-text;
&--latest {
grid-template-columns: repeat(2, 1fr);
}
.developer-features-list__item {
display: flex;
flex-direction: column;
margin-bottom: 0;
a {
font-size: rem(13px);
}
.developer-features-list__item-title {
padding-bottom: 8px;
font-weight: 500;
font-size: rem(16px);
letter-spacing: -0.32px;
line-height: 24px;
}
.developer-features-list__item-description {
font-size: rem(14px);
color: var(--color-text-subtle);
line-height: 20px;
letter-spacing: -0.15px;
}
.developer-features-list__item-learn-more {
padding-top: 8px;
margin-top: auto;
}
}
.developer-features-list__item-tag {
color: var(--color-text-subtle);
font-size: $font-body-extra-small;
line-height: 20px;
text-transform: uppercase;
}
@media (max-width: $break-large) {
display: block;
.developer-features-list__item {
margin: 0 32px 24px 32px;
.developer-features-list__item-learn-more {
padding-top: 30px;
}
}
}
}
|