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.
47 lines
762 B
SCSS
47 lines
762 B
SCSS
.cards {
|
|
display: grid;
|
|
grid-template-rows: auto;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
gap: 24px;
|
|
margin-top: 4vmin;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.card {
|
|
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
|
|
border-radius: 1rem;
|
|
background: var(--bg-2);
|
|
min-height: 100px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-info {
|
|
padding: 0 24px 24px 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.card-title {
|
|
margin-top: 0.7em;
|
|
}
|
|
|
|
.card-image {
|
|
border: unset;
|
|
width: 100%;
|
|
}
|
|
|
|
.card-image-placeholder {
|
|
width: 100%;
|
|
height: 12px;
|
|
}
|
|
|
|
.card-description {
|
|
margin-top: 0.5em;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media all and (max-width: 720px) {
|
|
.cards {
|
|
gap: 18px;
|
|
}
|
|
}
|