32 lines
457 B
CSS
Raw Normal View History

.card {
overflow: hidden;
margin-bottom: 10px;
margin-left: 15px;
max-height: 290px;
width: 240px;
cursor: pointer;
}
.cardImage {
width: 240px;
height: 135px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.cardsGrid {
display: flex;
flex-flow: row wrap;
2016-11-11 17:22:18 -08:00
margin-left: -15px;
}
.cardList {
margin-bottom: 1.1rem;
}
.cardListLabel {
white-space: nowrap;
font-weight: bold;
}