papercss/src/cards.less

43 lines
624 B
Plaintext
Raw Normal View History

2017-11-01 15:48:02 +01:00
.card {
.shadow;
2017-11-01 15:48:02 +01:00
position: relative;
display: flex;
flex-direction: column;
word-wrap: break-word;
border: 2px solid @muted-light;
2017-11-01 15:48:02 +01:00
.card-body {
flex: 1 1 auto;
padding: 1.25rem;
.card-title, h4 {
margin-top: 0;
margin-bottom: 0.5rem;
}
.card-subtitle, h5 {
.text-secondary;
margin-top: 0;
margin-bottom: 0.5rem;
}
.card-text, p {
margin-top: 0;
margin-bottom: 1rem;
}
2017-11-01 17:20:05 +01:00
.card-link + .card-link,
a + a {
margin-left: 1.25rem;
}
}
.image-top,
.image-bottom,
2017-11-01 15:48:02 +01:00
img {
border: 0;
border-radius: 0;
2017-11-01 15:48:02 +01:00
}
}