23 lines
353 B
CSS
Raw Normal View History

.card {
overflow: hidden;
margin-bottom: 10px;
max-height: 290px;
width: 240px;
cursor: pointer;
2016-11-11 17:22:18 -08:00
margin-left: 15px;
}
.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;
}