2018-08-27 17:01:08 +02:00
|
|
|
.card-deck
|
|
|
|
// Custom, as of bootstrap 4.1.3 there is no way to do this.
|
2018-09-11 17:45:33 +02:00
|
|
|
&.card-deck-responsive
|
2018-09-11 15:14:51 +02:00
|
|
|
@extend .row
|
|
|
|
|
2018-08-27 17:01:08 +02:00
|
|
|
.card
|
2018-09-11 15:14:51 +02:00
|
|
|
@extend .col-md-3
|
|
|
|
+media-xs
|
|
|
|
flex: 1 0 50%
|
|
|
|
max-width: 50%
|
|
|
|
|
|
|
|
+media-sm
|
|
|
|
flex: 1 0 33%
|
|
|
|
max-width: 33%
|
|
|
|
|
|
|
|
+media-md
|
|
|
|
flex: 1 0 25%
|
|
|
|
max-width: 25%
|
|
|
|
|
|
|
|
+media-lg
|
|
|
|
flex: 1 0 20%
|
|
|
|
max-width: 20%
|
2018-08-27 17:01:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
.card-padless
|
|
|
|
.card
|
2018-09-11 15:14:51 +02:00
|
|
|
@extend .border-0
|
2018-08-27 17:01:08 +02:00
|
|
|
|
|
|
|
.card-body
|
2018-09-11 15:14:51 +02:00
|
|
|
@extend .px-0
|
2018-08-27 17:01:08 +02:00
|
|
|
|
2018-09-11 15:14:51 +02:00
|
|
|
|
|
|
|
.card-image-fade
|
2018-08-27 17:01:08 +02:00
|
|
|
&:hover
|
2018-09-11 15:14:51 +02:00
|
|
|
.card-img-top
|
2018-09-11 19:37:22 +02:00
|
|
|
opacity: .9
|
2018-09-10 19:02:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
.card.asset
|
|
|
|
color: $color-text
|
|
|
|
|
2018-09-11 15:14:51 +02:00
|
|
|
&:hover
|
|
|
|
text-decoration: none
|
|
|
|
|
2018-09-10 19:02:27 +02:00
|
|
|
&.free
|
|
|
|
overflow: hidden
|
|
|
|
|
|
|
|
&:after
|
|
|
|
+ribbon
|
|
|
|
content: 'FREE'
|
|
|
|
padding: 2px 50px
|
|
|
|
|
|
|
|
.card-body
|
2018-09-11 15:14:51 +02:00
|
|
|
position: relative // for placing the progress
|
|
|
|
|
|
|
|
.card-text
|
|
|
|
font-size: $font-size-xs
|
2018-09-10 19:02:27 +02:00
|
|
|
|
|
|
|
.card-img-top
|
2018-09-11 15:14:51 +02:00
|
|
|
background-color: $color-background
|
2018-09-10 19:02:27 +02:00
|
|
|
background-size: cover
|
|
|
|
background-position: center
|
2018-09-11 15:14:51 +02:00
|
|
|
|
2018-09-11 19:37:22 +02:00
|
|
|
|
2018-09-11 15:14:51 +02:00
|
|
|
.progress
|
2018-09-11 16:11:05 +02:00
|
|
|
height: 4px
|
2018-09-11 15:14:51 +02:00
|
|
|
position: absolute
|
2018-09-11 16:11:05 +02:00
|
|
|
top: -4px
|
2018-09-11 15:14:51 +02:00
|
|
|
width: 100%
|
|
|
|
|
2018-09-11 19:37:22 +02:00
|
|
|
.card-img-top
|
|
|
|
&.card-icon
|
|
|
|
display: flex
|
|
|
|
align-items: center
|
|
|
|
justify-content: center
|
|
|
|
font-size: 2em
|
2018-09-11 16:11:05 +02:00
|
|
|
|
2018-09-11 19:37:22 +02:00
|
|
|
i
|
|
|
|
opacity: .2
|
2018-09-11 16:11:05 +02:00
|
|
|
|
|
|
|
.card-label
|
|
|
|
background-color: rgba($black, .5)
|
|
|
|
border-radius: 3px
|
|
|
|
color: $white
|
|
|
|
display: block
|
|
|
|
font-size: $font-size-xxs
|
|
|
|
left: 5px
|
|
|
|
top: -25px
|
|
|
|
position: absolute
|
|
|
|
padding: 1px 5px
|
|
|
|
z-index: 1
|