twbs--bootstrap/scss/_card.scss

291 lines
4.5 KiB
SCSS
Raw Normal View History

2014-08-06 00:12:24 +00:00
//
// Base styles
//
2015-05-28 21:07:34 +00:00
$card-spacer-x: 1.25rem;
$card-spacer-y: .75rem;
$card-border-width: .0625rem;
$card-border-radius: .25rem;
2014-08-06 00:12:24 +00:00
.card {
position: relative;
2015-05-28 21:07:34 +00:00
margin-bottom: $card-spacer-y;
border: $card-border-width solid #e5e5e5;
@include border-radius($card-border-radius);
}
.card-block {
padding: $card-spacer-x;
2014-08-06 00:12:24 +00:00
}
2015-05-28 21:07:34 +00:00
2014-08-06 00:12:24 +00:00
.card-title {
margin-top: 0;
2015-05-28 21:07:34 +00:00
margin-bottom: $card-spacer-y;
2014-08-06 00:12:24 +00:00
}
2015-05-28 21:07:34 +00:00
.card-subtitle {
margin-top: -($card-spacer-y / 2);
2014-08-06 00:12:24 +00:00
margin-bottom: 0;
}
2015-05-28 21:07:34 +00:00
.card-text:last-child {
margin-bottom: 0;
2014-08-06 00:12:24 +00:00
}
2015-05-28 21:07:34 +00:00
// .card-actions {
// padding: $card-spacer-y $card-spacer-x;
// .card-link + .card-link {
// margin-left: $card-spacer-x;
// }
// }
.card-link {
@include hover {
text-decoration: none;
}
2014-08-06 00:12:24 +00:00
2015-05-28 21:07:34 +00:00
+ .card-link {
margin-left: $card-spacer-x;
}
}
2014-08-06 00:12:24 +00:00
2015-05-28 21:07:34 +00:00
@if $enable-rounded {
.card {
> .list-group:first-child {
.list-group-item:first-child {
border-radius: $card-border-radius $card-border-radius 0 0;
}
}
2014-08-06 00:12:24 +00:00
2015-05-28 21:07:34 +00:00
> .list-group:last-child {
.list-group-item:last-child {
border-radius: 0 0 $card-border-radius $card-border-radius;
}
}
}
2014-08-06 00:12:24 +00:00
}
2015-05-28 02:00:11 +00:00
//
2015-05-28 21:07:34 +00:00
// Optional textual caps
2015-05-28 02:00:11 +00:00
//
2015-05-28 21:07:34 +00:00
.card-header {
padding: $card-spacer-y $card-spacer-x;
border-bottom: $card-border-width solid #eee;
2015-05-28 02:00:11 +00:00
2015-05-28 21:07:34 +00:00
&:first-child {
@include border-radius($card-border-radius $card-border-radius 0 0);
}
2015-05-28 02:00:11 +00:00
}
2015-05-28 21:07:34 +00:00
.card-footer {
padding: $card-spacer-y $card-spacer-x;
border-top: $card-border-width solid #eee;
&:last-child {
@include border-radius(0 0 $card-border-radius $card-border-radius);
}
2015-05-28 02:00:11 +00:00
}
2014-08-06 00:12:24 +00:00
//
// Background variations
//
.card-primary {
2014-12-02 22:02:35 +00:00
background-color: $brand-primary;
border-color: $brand-primary;
2014-08-06 00:12:24 +00:00
}
.card-success {
2014-12-02 22:02:35 +00:00
background-color: $brand-success;
border-color: $brand-success;
2014-08-06 00:12:24 +00:00
}
.card-info {
2014-12-02 22:02:35 +00:00
background-color: $brand-info;
border-color: $brand-info;
2014-08-06 00:12:24 +00:00
}
.card-warning {
2014-12-02 22:02:35 +00:00
background-color: $brand-warning;
border-color: $brand-warning;
2014-08-06 00:12:24 +00:00
}
.card-danger {
2014-12-02 22:02:35 +00:00
background-color: $brand-danger;
border-color: $brand-danger;
2014-08-06 00:12:24 +00:00
}
//
// Inverse text within a card for use with dark backgrounds
//
.card-inverse {
.card-header,
.card-footer {
border-bottom: .075rem solid rgba(255,255,255,.2);
}
.card-header,
.card-footer,
.card-title,
.card-blockquote {
color: #fff;
}
.card-link,
.card-text,
.card-blockquote > footer {
color: rgba(255,255,255,.65);
}
.card-link {
@include hover-focus {
color: #fff;
}
2014-08-06 00:12:24 +00:00
}
}
//
// Blockquote
//
.card-blockquote {
padding: 0;
margin-bottom: 0;
border-left: 0;
2014-08-06 00:12:24 +00:00
}
// Card image
.card-img {
2015-05-28 21:07:34 +00:00
// margin: -1.325rem;
2014-12-02 22:02:35 +00:00
@include border-radius(.25rem);
2014-08-06 00:12:24 +00:00
}
.card-img-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1.25rem;
}
// Card image caps
.card-img-top {
2014-12-02 22:02:35 +00:00
@include border-radius(.25rem .25rem 0 0);
2014-08-06 00:12:24 +00:00
}
.card-img-bottom {
2014-12-02 22:02:35 +00:00
@include border-radius(0 0 .25rem .25rem);
2014-08-06 00:12:24 +00:00
}
//
// Card set
//
2015-05-28 21:07:34 +00:00
@if $enable-flex {
.card-deck {
display: flex;
flex-flow: row wrap;
margin-right: -.75rem;
margin-left: -.75rem;
2014-08-06 00:12:24 +00:00
2015-05-28 21:07:34 +00:00
.card {
flex: 1 0 0;
margin-left: .75rem;
margin-right: .75rem;
}
2014-08-06 00:12:24 +00:00
}
2015-05-28 21:07:34 +00:00
} @else {
.card-deck {
display: table;
table-layout: fixed;
border-spacing: 1.25rem 0;
2014-08-06 00:12:24 +00:00
2015-05-28 21:07:34 +00:00
.card {
display: table-cell;
float: none;
max-width: none;
}
}
.card-deck-wrapper {
margin-right: -1.25rem;
margin-left: -1.25rem;
}
}
2014-08-06 00:12:24 +00:00
//
// Card groups
//
.card-group {
2015-05-28 17:37:12 +00:00
@if $enable-flex {
display: flex;
flex-flow: row wrap;
} @else {
display: table;
width: 100%;
table-layout: fixed;
}
2014-08-06 00:12:24 +00:00
.card {
2015-05-28 17:37:12 +00:00
@if $enable-flex {
flex: 1 0 0;
} @else {
display: table-cell;
}
2014-08-06 00:12:24 +00:00
+ .card {
margin-left: 0;
border-left: 0;
2014-08-06 00:12:24 +00:00
}
2015-05-28 21:07:34 +00:00
// Handle rounded corners
&:first-child {
.card-img-top {
@if $enable-rounded {
border-top-right-radius: 0;
}
}
.card-img-bottom {
@if $enable-rounded {
border-bottom-right-radius: 0;
}
}
}
&:last-child {
.card-img-top {
@if $enable-rounded {
border-top-left-radius: 0;
}
}
.card-img-bottom {
@if $enable-rounded {
border-bottom-left-radius: 0;
}
}
}
&:not(:first-child):not(:last-child) {
.card-img-top,
.card-img-bottom {
@include border-radius(0);
}
}
2014-08-06 00:12:24 +00:00
}
}
//
// Card
//
.card-columns {
column-count: 3;
column-gap: 1rem;
2014-08-06 00:12:24 +00:00
.card {
display: inline-block;
width: 100%; // Don't let them exceed the column width
}
}