39 lines
600 B
CSS
39 lines
600 B
CSS
.card {
|
|
flex: 0 300px;
|
|
overflow: hidden;
|
|
margin-bottom: 16px;
|
|
margin-left: 16px;
|
|
max-width: 50%;
|
|
max-height: 290px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.card:hover {
|
|
background: #f8f9fa;
|
|
transform: translateY(-8px);
|
|
}
|
|
|
|
.cardImage {
|
|
margin: -16px -24px 16px -24px;
|
|
width: calc(100% + 24px + 24px);
|
|
height: 135px;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.cardsGrid {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
margin-left: -16px;
|
|
}
|
|
|
|
.cardList {
|
|
margin-bottom: 1.1rem;
|
|
}
|
|
|
|
.cardListLabel {
|
|
white-space: nowrap;
|
|
font-weight: bold;
|
|
}
|