bulma/sass/components/card.sass
Jeremy Thomas fccdedc66b Fix #861
2017-07-13 19:44:35 +01:00

66 lines
1.2 KiB
Sass

$card: $text !default
$card-background: $white !default
$card-shadow: 0 2px 3px rgba($black, 0.1), 0 0 0 1px rgba($black, 0.1) !default
$card-header: $text-strong !default
$card-header-shadow: 0 1px 2px rgba($black, 0.1) !default
$card-header-weight: $weight-bold !default
$card-footer-border: $border !default
.card
background-color: $card-background
box-shadow: $card-shadow
color: $card
max-width: 100%
position: relative
.card-header
align-items: stretch
box-shadow: $card-header-shadow
display: flex
.card-header-title
align-items: center
color: $card-header
display: flex
flex-grow: 1
font-weight: $card-header-weight
padding: 0.75rem
.card-header-icon
align-items: center
cursor: pointer
display: flex
justify-content: center
padding: 0.75rem
.card-image
display: block
position: relative
.card-content
padding: 1.5rem
.card-footer
border-top: 1px solid $card-footer-border
align-items: stretch
display: flex
.card-footer-item
align-items: center
display: flex
flex-basis: 0
flex-grow: 1
flex-shrink: 0
justify-content: center
padding: 0.75rem
&:not(:last-child)
border-right: 1px solid $card-footer-border
// Combinations
.card
.media:not(:last-child)
margin-bottom: 0.75rem