2014-08-05 20:12:24 -04:00
|
|
|
//
|
|
|
|
// Base styles
|
|
|
|
//
|
|
|
|
|
|
|
|
.card {
|
|
|
|
position: relative;
|
2016-12-22 19:41:28 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-06-01 17:21:33 -04:00
|
|
|
min-width: 0;
|
|
|
|
word-wrap: break-word;
|
2015-09-22 19:40:34 -04:00
|
|
|
background-color: $card-bg;
|
2017-06-30 18:28:50 -04:00
|
|
|
background-clip: border-box;
|
2016-05-08 16:24:45 -04:00
|
|
|
border: $card-border-width solid $card-border-color;
|
2016-11-28 16:23:59 -05:00
|
|
|
@include border-radius($card-border-radius);
|
2017-10-01 19:53:16 -04:00
|
|
|
|
|
|
|
> hr {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2017-10-04 07:11:00 -04:00
|
|
|
|
|
|
|
> .list-group:first-child {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
@include border-top-radius($card-border-radius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .list-group:last-child {
|
|
|
|
.list-group-item:last-child {
|
|
|
|
@include border-bottom-radius($card-border-radius);
|
|
|
|
}
|
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
|
|
|
|
2017-06-15 01:01:16 -04:00
|
|
|
.card-body {
|
2016-12-22 19:40:58 -05:00
|
|
|
// Enable `flex-grow: 1` for decks and groups so that card blocks take up
|
|
|
|
// as much space as possible, ensuring footers are aligned to the bottom.
|
|
|
|
flex: 1 1 auto;
|
2015-05-28 17:07:34 -04:00
|
|
|
padding: $card-spacer-x;
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
|
2014-08-05 20:12:24 -04:00
|
|
|
.card-title {
|
2015-05-28 17:07:34 -04:00
|
|
|
margin-bottom: $card-spacer-y;
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
|
|
|
|
.card-subtitle {
|
|
|
|
margin-top: -($card-spacer-y / 2);
|
2014-08-05 20:12:24 -04:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
|
|
|
|
.card-text:last-child {
|
|
|
|
margin-bottom: 0;
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
.card-link {
|
|
|
|
@include hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
|
2015-05-28 17:07:34 -04:00
|
|
|
+ .card-link {
|
|
|
|
margin-left: $card-spacer-x;
|
|
|
|
}
|
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
|
2015-05-27 22:00:11 -04:00
|
|
|
//
|
2015-05-28 17:07:34 -04:00
|
|
|
// Optional textual caps
|
2015-05-27 22:00:11 -04:00
|
|
|
//
|
|
|
|
|
2015-05-28 17:07:34 -04:00
|
|
|
.card-header {
|
|
|
|
padding: $card-spacer-y $card-spacer-x;
|
2016-09-12 02:32:51 -04:00
|
|
|
margin-bottom: 0; // Removes the default margin-bottom of <hN>
|
2015-05-29 04:59:54 -04:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-11 23:22:07 -04:00
|
|
|
border-bottom: $card-border-width solid $card-border-color;
|
2015-05-27 22:00:11 -04:00
|
|
|
|
2015-05-28 17:07:34 -04:00
|
|
|
&:first-child {
|
2017-06-01 18:51:31 -04:00
|
|
|
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
2017-09-27 03:57:40 -04:00
|
|
|
|
|
|
|
+ .list-group {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-05-27 22:00:11 -04:00
|
|
|
}
|
|
|
|
|
2015-05-28 17:07:34 -04:00
|
|
|
.card-footer {
|
|
|
|
padding: $card-spacer-y $card-spacer-x;
|
2015-05-29 04:59:54 -04:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-11 23:22:07 -04:00
|
|
|
border-top: $card-border-width solid $card-border-color;
|
2015-05-28 17:07:34 -04:00
|
|
|
|
|
|
|
&:last-child {
|
2017-06-01 18:51:31 -04:00
|
|
|
@include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
2015-05-27 22:00:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-17 21:55:24 -05:00
|
|
|
//
|
|
|
|
// Header navs
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-header-tabs {
|
|
|
|
margin-right: -($card-spacer-x / 2);
|
|
|
|
margin-bottom: -$card-spacer-y;
|
|
|
|
margin-left: -($card-spacer-x / 2);
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-header-pills {
|
|
|
|
margin-right: -($card-spacer-x / 2);
|
|
|
|
margin-left: -($card-spacer-x / 2);
|
|
|
|
}
|
|
|
|
|
2014-08-05 20:12:24 -04:00
|
|
|
// Card image
|
|
|
|
.card-img-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2016-02-17 02:25:18 -05:00
|
|
|
padding: $card-img-overlay-padding;
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
|
|
|
|
2017-03-28 01:52:24 -04:00
|
|
|
.card-img {
|
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-01 18:51:31 -04:00
|
|
|
@include border-radius($card-inner-border-radius);
|
2017-03-28 01:52:24 -04:00
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
|
|
|
|
// Card image caps
|
|
|
|
.card-img-top {
|
2017-03-28 01:52:24 -04:00
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-01 18:51:31 -04:00
|
|
|
@include border-top-radius($card-inner-border-radius);
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
2017-03-28 01:52:24 -04:00
|
|
|
|
2014-08-05 20:12:24 -04:00
|
|
|
.card-img-bottom {
|
2017-03-28 01:52:24 -04:00
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-01 18:51:31 -04:00
|
|
|
@include border-bottom-radius($card-inner-border-radius);
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-24 23:01:09 -05:00
|
|
|
// Card deck
|
2014-08-05 20:12:24 -04:00
|
|
|
|
2017-08-13 17:53:24 -04:00
|
|
|
.card-deck {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.card {
|
|
|
|
margin-bottom: $card-deck-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-12-21 23:26:17 -05:00
|
|
|
flex-flow: row wrap;
|
2017-03-28 01:53:39 -04:00
|
|
|
margin-right: -$card-deck-margin;
|
|
|
|
margin-left: -$card-deck-margin;
|
2016-12-21 23:26:17 -05:00
|
|
|
|
|
|
|
.card {
|
2015-09-06 12:36:19 -04:00
|
|
|
display: flex;
|
2017-10-04 23:18:06 -04:00
|
|
|
// Flexbugs #4: https://github.com/philipwalton/flexbugs#4-flex-shorthand-declarations-with-unitless-flex-basis-values-are-ignored
|
2017-06-07 15:43:22 -04:00
|
|
|
flex: 1 0 0%;
|
2016-12-21 23:26:17 -05:00
|
|
|
flex-direction: column;
|
2017-03-28 01:53:39 -04:00
|
|
|
margin-right: $card-deck-margin;
|
2017-08-13 17:53:24 -04:00
|
|
|
margin-bottom: 0; // Override the default
|
2017-03-28 01:53:39 -04:00
|
|
|
margin-left: $card-deck-margin;
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
|
2016-12-21 23:26:17 -05:00
|
|
|
|
2014-08-05 20:12:24 -04:00
|
|
|
//
|
|
|
|
// Card groups
|
|
|
|
//
|
|
|
|
|
2017-08-13 17:53:24 -04:00
|
|
|
.card-group {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2017-11-16 05:41:48 -05:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2017-08-13 17:53:24 -04:00
|
|
|
margin-bottom: $card-group-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-12-21 23:26:17 -05:00
|
|
|
flex-flow: row wrap;
|
2017-11-16 05:41:48 -05:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2017-10-04 23:18:06 -04:00
|
|
|
// Flexbugs #4: https://github.com/philipwalton/flexbugs#4-flex-shorthand-declarations-with-unitless-flex-basis-values-are-ignored
|
2017-06-07 15:43:22 -04:00
|
|
|
flex: 1 0 0%;
|
2017-08-16 18:45:21 -04:00
|
|
|
margin-bottom: 0;
|
2015-05-28 17:07:34 -04:00
|
|
|
|
2015-09-06 12:36:19 -04:00
|
|
|
+ .card {
|
|
|
|
margin-left: 0;
|
|
|
|
border-left: 0;
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
2015-09-06 12:36:19 -04:00
|
|
|
|
|
|
|
// Handle rounded corners
|
|
|
|
@if $enable-rounded {
|
|
|
|
&:first-child {
|
2015-11-13 01:02:35 -05:00
|
|
|
@include border-right-radius(0);
|
|
|
|
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2015-09-06 12:36:19 -04:00
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2015-09-06 12:36:19 -04:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
2017-08-13 17:53:24 -04:00
|
|
|
|
2015-09-06 12:36:19 -04:00
|
|
|
&:last-child {
|
2015-11-13 01:02:35 -05:00
|
|
|
@include border-left-radius(0);
|
2015-11-13 03:17:25 -05:00
|
|
|
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2015-09-06 12:36:19 -04:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2015-09-06 12:36:19 -04:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
2015-05-29 04:59:54 -04:00
|
|
|
|
2017-10-10 09:46:43 -04:00
|
|
|
&:only-child {
|
|
|
|
@include border-radius($card-border-radius);
|
2017-10-10 18:18:56 -04:00
|
|
|
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2017-10-10 18:18:56 -04:00
|
|
|
@include border-top-radius($card-border-radius);
|
|
|
|
}
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2017-10-10 18:18:56 -04:00
|
|
|
@include border-bottom-radius($card-border-radius);
|
|
|
|
}
|
2017-10-10 09:46:43 -04:00
|
|
|
}
|
|
|
|
|
2017-09-25 17:11:32 -04:00
|
|
|
&:not(:first-child):not(:last-child):not(:only-child) {
|
2017-10-22 22:43:35 -04:00
|
|
|
@include border-radius(0);
|
2015-09-06 12:36:19 -04:00
|
|
|
|
|
|
|
.card-img-top,
|
2017-10-22 15:18:03 -04:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-header,
|
|
|
|
.card-footer {
|
2017-10-22 22:43:35 -04:00
|
|
|
@include border-radius(0);
|
2015-09-06 12:36:19 -04:00
|
|
|
}
|
2015-05-29 04:59:54 -04:00
|
|
|
}
|
2015-05-28 17:07:34 -04:00
|
|
|
}
|
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2016-12-22 19:39:23 -05:00
|
|
|
// Columns
|
2014-08-05 20:12:24 -04:00
|
|
|
//
|
|
|
|
|
2017-04-08 23:58:33 -04:00
|
|
|
.card-columns {
|
|
|
|
.card {
|
|
|
|
margin-bottom: $card-columns-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-12-22 19:38:22 -05:00
|
|
|
column-count: $card-columns-count;
|
2016-12-22 19:38:09 -05:00
|
|
|
column-gap: $card-columns-gap;
|
2014-08-05 20:12:24 -04:00
|
|
|
|
2015-09-06 12:36:19 -04:00
|
|
|
.card {
|
2016-09-07 23:38:11 -04:00
|
|
|
display: inline-block; // Don't let them vertically span multiple columns
|
2016-12-22 19:39:18 -05:00
|
|
|
width: 100%; // Don't let their width change
|
2015-09-06 12:36:19 -04:00
|
|
|
}
|
2014-08-05 20:12:24 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-05 08:18:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Accordion
|
|
|
|
//
|
|
|
|
|
|
|
|
.accordion {
|
|
|
|
.card:not(:first-of-type):not(:last-of-type) {
|
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:not(:first-of-type) {
|
|
|
|
.card-header:first-child {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:first-of-type {
|
|
|
|
border-bottom: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:last-of-type {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
}
|