62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
.cardsWrapper {
|
|
display: grid;
|
|
column-gap: 40px;
|
|
row-gap: 40px;
|
|
grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
|
|
|
|
& .card {
|
|
border: 1px solid var(--gray-5);
|
|
box-shadow: 0 2px 3px rgba(37, 41, 55, 0.08);
|
|
border-radius: 1px;
|
|
transition: box-shadow 0.25s, transform 0.25s;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 24px 24px 28px;
|
|
justify-content: space-between;
|
|
|
|
&:hover {
|
|
box-shadow: 0 16px 28px rgba(37, 38, 45, 0.12);
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
& .cardContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
& .icon {
|
|
width: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
composes: g-type-display-3 from global;
|
|
margin-top: 0;
|
|
margin-bottom: 46px;
|
|
}
|
|
|
|
.eyebrow {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
composes: g-type-label from global;
|
|
color: var(--gray-2);
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.heading {
|
|
composes: g-type-display-6 from global;
|
|
margin-top: 0;
|
|
margin-bottom: 8px;
|
|
color: var(--black);
|
|
}
|
|
|
|
.description {
|
|
composes: g-type-body from global;
|
|
color: var(--gray-1);
|
|
margin-top: 0;
|
|
margin-bottom: 17px;
|
|
}
|