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