39 lines
600 B
CSS
Raw Normal View History

.card {
flex: 0 300px;
overflow: hidden;
2017-04-29 15:14:57 -07:00
margin-bottom: 16px;
margin-left: 16px;
2017-05-03 07:53:50 -07:00
max-width: 50%;
max-height: 290px;
cursor: pointer;
}
2017-04-29 17:13:45 -07:00
.card:hover {
background: #f8f9fa;
transform: translateY(-8px);
}
.cardImage {
2017-04-29 15:14:57 -07:00
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;
2017-04-29 15:14:57 -07:00
margin-left: -16px;
}
.cardList {
margin-bottom: 1.1rem;
}
.cardListLabel {
white-space: nowrap;
font-weight: bold;
}