You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
.cards {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
|
|
grid-template-rows: auto;
|
|
|
|
gap: 24px;
|
|
|
|
padding: 12px 0;
|
|
|
|
margin-top: 4vmin;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
min-height: 100px;
|
|
|
|
background: var(--bg-2);
|
|
|
|
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-info {
|
|
|
|
padding: 0 24px 24px 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
margin-top: 0.7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image {
|
|
|
|
border: unset;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image-placeholder {
|
|
|
|
height: 12px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-description {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 720px) {
|
|
|
|
.cards {
|
|
|
|
gap: 18px;
|
|
|
|
}
|
|
|
|
}
|