palette: add link color support

This commit is contained in:
Kazhnuz 2018-10-13 18:14:27 +02:00
parent 9954f1988b
commit 21b099ce70
2 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,7 @@
/* ------------------ COULEURS ------------------- */
a, a:hover, a:active {
color: #4e63c9; }
/* CARDS */
.card-blue > .card-header {
background-color: #4e63c9;

View File

@ -18,6 +18,8 @@ $color-danger: $color-red;
$color-info: $color-skyblue;
$color-success: $color-green;
$color-link: $color-blue;
@mixin card-color($background-color, $text-color) {
& > .card-header { background-color: $background-color; color:$text-color; }
}
@ -42,6 +44,10 @@ $color-success: $color-green;
color: $text-color;
}
a, a:hover, a:active {
color: $color-link;
}
/* CARDS */
.card {