2014-08-06 02:12:24 +02:00
|
|
|
//
|
|
|
|
// Base styles
|
|
|
|
//
|
|
|
|
|
|
|
|
.card {
|
|
|
|
position: relative;
|
2015-11-15 06:40:17 +01:00
|
|
|
display: block;
|
2015-05-28 23:07:34 +02:00
|
|
|
margin-bottom: $card-spacer-y;
|
2015-09-23 01:40:34 +02:00
|
|
|
background-color: $card-bg;
|
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);
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-block {
|
|
|
|
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 {
|
|
|
|
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
|
|
|
|
|
|
|
// .card-actions {
|
|
|
|
// padding: $card-spacer-y $card-spacer-x;
|
|
|
|
|
|
|
|
// .card-link + .card-link {
|
|
|
|
// margin-left: $card-spacer-x;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
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
|
|
|
|
2016-04-03 00:47:12 +02:00
|
|
|
.card {
|
|
|
|
> .list-group:first-child {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
@include border-top-radius($card-border-radius);
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
2016-04-03 00:47:12 +02:00
|
|
|
}
|
2014-08-06 02:12:24 +02:00
|
|
|
|
2016-04-03 00:47:12 +02:00
|
|
|
> .list-group:last-child {
|
|
|
|
.list-group-item:last-child {
|
|
|
|
@include border-bottom-radius($card-border-radius);
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
|
|
|
}
|
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>
|
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 {
|
2015-05-29 10:59:54 +02:00
|
|
|
@include border-radius($card-border-radius-inner $card-border-radius-inner 0 0);
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
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 {
|
2015-05-29 10:59:54 +02:00
|
|
|
@include border-radius(0 0 $card-border-radius-inner $card-border-radius-inner);
|
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 {
|
|
|
|
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-06 02:12:24 +02:00
|
|
|
//
|
|
|
|
// Background variations
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-primary {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-variant($brand-primary, $brand-primary);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.card-success {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-variant($brand-success, $brand-success);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.card-info {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-variant($brand-info, $brand-info);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.card-warning {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-variant($brand-warning, $brand-warning);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.card-danger {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-variant($brand-danger, $brand-danger);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
|
2015-10-29 13:34:41 +01:00
|
|
|
// Remove all backgrounds
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-primary {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-primary-bg);
|
|
|
|
}
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-secondary {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-secondary-border);
|
|
|
|
}
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-info {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-info-bg);
|
|
|
|
}
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-success {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-success-bg);
|
|
|
|
}
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-warning {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-warning-bg);
|
|
|
|
}
|
2016-01-06 10:09:45 +01:00
|
|
|
.card-outline-danger {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-outline-variant($btn-danger-bg);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Inverse text within a card for use with dark backgrounds
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-inverse {
|
2015-10-29 13:34:41 +01:00
|
|
|
@include card-inverse;
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Blockquote
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-blockquote {
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 0;
|
2014-12-11 21:05:29 +01:00
|
|
|
border-left: 0;
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Card image
|
|
|
|
.card-img {
|
2015-05-28 23:07:34 +02:00
|
|
|
// margin: -1.325rem;
|
2016-09-08 05:40:12 +02:00
|
|
|
@include border-radius($card-border-radius-inner);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Card image caps
|
|
|
|
.card-img-top {
|
2016-04-03 00:47:12 +02:00
|
|
|
@include border-top-radius($card-border-radius-inner);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
.card-img-bottom {
|
2016-04-03 00:47:12 +02:00
|
|
|
@include border-bottom-radius($card-border-radius-inner);
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Card set
|
|
|
|
//
|
2016-05-12 07:14:05 +02:00
|
|
|
// Heads up! We do some funky style resetting here for margins across our two
|
|
|
|
// variations (one flex, one table). Individual cards have margin-bottom by
|
|
|
|
// default, but they're ignored due to table styles. For a consistent design,
|
|
|
|
// we've done the same to the flex variation.
|
|
|
|
//
|
|
|
|
// Those changes are noted by `// Margin balancing`.
|
2014-08-06 02:12:24 +02:00
|
|
|
|
2016-12-22 05:26:17 +01:00
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.card-deck {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
margin-right: -$card-deck-margin;
|
|
|
|
margin-bottom: $card-spacer-y; // Margin balancing
|
|
|
|
margin-left: -$card-deck-margin;
|
|
|
|
|
|
|
|
.card {
|
2015-09-06 18:36:19 +02:00
|
|
|
display: flex;
|
2016-12-22 05:26:17 +01:00
|
|
|
flex: 1 0 0;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-right: $card-deck-margin;
|
|
|
|
margin-bottom: 0; // Margin balancing
|
|
|
|
margin-left: $card-deck-margin;
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
2016-12-22 05:26:17 +01:00
|
|
|
|
|
|
|
.card-block {
|
|
|
|
flex-grow: 1;
|
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
|
|
|
|
//
|
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.card-group {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2014-08-06 02:12:24 +02:00
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
.card {
|
2016-12-22 05:26:17 +01:00
|
|
|
flex: 1 0 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);
|
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
.card-img-top {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
.card-img-bottom {
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2015-05-28 23:07:34 +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
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
.card-img-top {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
|
|
|
.card-img-bottom {
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
2015-05-29 10:59:54 +02:00
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
&:not(:first-child):not(:last-child) {
|
2015-05-29 10:59:54 +02:00
|
|
|
border-radius: 0;
|
2015-09-06 18:36:19 +02:00
|
|
|
|
|
|
|
.card-img-top,
|
|
|
|
.card-img-bottom {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2015-05-29 10:59:54 +02:00
|
|
|
}
|
2015-05-28 23:07:34 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Card
|
|
|
|
//
|
|
|
|
|
2015-09-06 18:36:19 +02:00
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.card-columns {
|
|
|
|
column-count: 3;
|
2016-02-17 08:00:58 +01:00
|
|
|
column-gap: $card-columns-sm-up-column-gap;
|
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
|
2015-09-06 18:36:19 +02:00
|
|
|
width: 100%; // Don't let them exceed the column width
|
|
|
|
}
|
2014-08-06 02:12:24 +02:00
|
|
|
}
|
|
|
|
}
|