chore: refactor cards

This commit is contained in:
Kazhnuz 2019-11-05 13:24:51 +01:00
parent 67cbfc3f58
commit b2d1bf7029
2 changed files with 62 additions and 1119 deletions

View file

@ -1,5 +1,17 @@
// Mixin and colors
@mixin card() {
@include border-radius();
box-shadow: $large-shadow;
border: none;
margin-bottom:1.2em;
}
@mixin card-relief{
@include card()
box-shadow: $large-shadow, $inset-shadow;
}
@mixin card-color($background-color, $text-color) {
& > .card-header { background-color: $background-color; color:$text-color; }
}
@ -12,20 +24,13 @@
/* 10.1 - Cards */
.card {
@include border-radius();
box-shadow: $large-shadow;
border: none;
margin-bottom:1.2em;
}
@include card();
.card-shadow {
box-shadow: $large-shadow, $inset-shadow;
}
.card h1,.card h2,.card h3,.card h4,.card h5,.card h6,.card h7,.card h8,.card h9,.card h10 {
h1, h2, h3, h4, h5, h6, h7, h8, h9, h10 {
color:#333;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
}
.card {
&-blue { @include card-color($color-blue, #FFF); }
@ -130,21 +135,16 @@ a.list-group-item:hover {
/* 10.2 - Breadcrumb */
.breadcrumb {
@include border-radius();
box-shadow: $large-shadow, $inset-shadow;
border: 0;
background-color:#eeeeec;
margin-bottom:1.2em;
@include card-relief();
@include li-no-margin();
background-color:#eeeeec;
}
/* 10.3 - Alerts */
.alert {
@include borders();
@include border-radius();
@include card();
color:rgba(0, 0, 0, 0.7);
box-shadow: $large-shadow;
}
.alert a, .alert-link {

1087
style.css

File diff suppressed because it is too large Load diff