52 lines
886 B
CSS
52 lines
886 B
CSS
.card {
|
|
border-radius: var(--Corner-radius-Medium);
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 399px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.default {
|
|
background-color: var(--Base-Surface-Subtle-Normal);
|
|
}
|
|
|
|
.featured {
|
|
background-color: var(--Main-Grey-White);
|
|
}
|
|
|
|
.imageContainer {
|
|
width: 100%;
|
|
height: 12.58625rem; /* 201.38px / 16 = 12.58625rem */
|
|
overflow: hidden;
|
|
}
|
|
|
|
.backgroundImage {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
align-items: flex-start;
|
|
padding: var(--Spacing-x4);
|
|
}
|
|
|
|
.description {
|
|
color: var(--Base-Text-Medium-contrast);
|
|
}
|
|
|
|
.ctaContainer {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
margin-top: var(--Spacing-x2);
|
|
}
|
|
|
|
.sidePeekCTA {
|
|
/* TODO: Create ticket to remove padding on "link" buttons,
|
|
align w. design on this. */
|
|
padding: 0 !important;
|
|
}
|