25 lines
305 B
SCSS
25 lines
305 B
SCSS
//
|
|
// _card.scss
|
|
//
|
|
|
|
.card {
|
|
margin-bottom: $grid-gutter-width;
|
|
box-shadow: $box-shadow;
|
|
}
|
|
|
|
.card-drop {
|
|
color: $body-color;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 15px;
|
|
margin: 0 0 7px 0;
|
|
font-weight: $font-weight-semibold;
|
|
}
|
|
|
|
.card-title-desc {
|
|
color: $card-title-desc;
|
|
margin-bottom: 24px;
|
|
}
|
|
|