File size: 1,760 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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
@import "@automattic/onboarding/styles/mixins";
.wpcom-atomic-hosting__card-container {
display: flex;
flex-wrap: wrap;
margin-block-start: 24px;
}
.wpcom-atomic-hosting__card {
width: 100%;
display: flex;
flex-direction: column;
@include break-xlarge {
width: 50%;
}
}
.wpcom-atomic-hosting__card-title {
font-family: Recoleta, serif;
color: var(--studio-gray-100);
font-size: 2rem;
}
.wpcom-atomic-hosting__card-description {
color: var(--studio-gray-80);
font-size: 0.75rem;
}
.wpcom-atomic-hosting__card-price {
font-family: Recoleta, serif;
color: var(--studio-gray-100);
margin-block-start: 32px;
font-size: 2.75rem;
}
.wpcom-atomic-hosting__card-interval {
position: relative;
inset-block-start: -0.5rem;
color: var(--studio-gray-50);
font-size: 0.75rem;
}
.wpcom-atomic-hosting__card-features {
margin-block-start: 36px;
}
.wpcom-atomic-hosting__card-features-heading {
margin-block: 6px 12px;
color: #7f54b3;
font-size: 0.75rem;
font-weight: 600;
a {
color: #7f54b3;
text-decoration: underline;
}
}
.wpcom-atomic-hosting__card-feature {
margin-block: 8px;
color: var(--studio-gray-80);
font-size: 0.75rem;
width: fit-content;
}
.wpcom-atomic-hosting__card-button {
margin-block-start: 16px;
width: 100%;
}
.wpcom-atomic-hosting__card-content {
flex: 1;
}
.wpcom-atomic-hosting__card-heading {
margin-block-start: 36px;
color: var(--studio-gray-100);
font-size: 0.75rem;
font-weight: 500;
}
.wpcom-atomic-hosting__card-storage-amount {
margin-block-start: 4px;
color: var(--studio-gray-90);
font-size: 0.75rem;
background-color: #f2f2f2;
padding: 4px 6px;
border-radius: 2px;
width: fit-content;
}
|