d97c7b9df6
Fixes #13
73 lines
1.3 KiB
SCSS
73 lines
1.3 KiB
SCSS
/*
|
|
* 2. Cards and containers
|
|
* All elements that are supposed to contain other stuff
|
|
*
|
|
*
|
|
*/
|
|
|
|
$card-bigpad: $lineheight_rel;
|
|
$card-smallpad: $lineheight_rel / 4;
|
|
|
|
.card {
|
|
@include panel($card-bigpad);
|
|
display: flex;
|
|
flex-direction: column;
|
|
color:$color-font;
|
|
|
|
&-body {
|
|
padding:0!important;
|
|
}
|
|
|
|
&-header {
|
|
@include panel-header($card-bigpad);
|
|
.fa {
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* CARD LIST - Make a list part of a card */
|
|
|
|
|
|
@mixin list-symbol($symbol) {
|
|
li.list-element {
|
|
list-style: none;
|
|
&::before {
|
|
font-family: "ForkAwesome";
|
|
content:$symbol;
|
|
padding-right: $lineheight_rel / 4;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin list-color($color) {
|
|
li.list-element {
|
|
&::before {
|
|
color: $color;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.card-list, .card > ul {
|
|
padding:0;
|
|
margin:0;
|
|
li.list-element {
|
|
line-height:$lineheight_rel / 2;
|
|
padding: $lineheight_rel / 4, $lineheight_rel / 4, $lineheight_rel / 4, $lineheight_rel / 2;
|
|
margin:0;
|
|
}
|
|
}
|
|
|
|
.list {
|
|
&-check {@include list-symbol("\f00c");}
|
|
&-cross {@include list-symbol("\f00d");}
|
|
|
|
&-danger{@include list-color($color-danger);}
|
|
&-success{@include list-color($color-success);}
|
|
}
|
|
|
|
.smallcard {
|
|
&-header {
|
|
@include panel-header($card-bigpad);
|
|
}
|
|
}
|