Release
This commit is contained in:
Francesco Malagrino
2017-03-26 20:32:45 +02:00
parent abc1749b64
commit 3c9cb0fe3c
4674 changed files with 291225 additions and 0 deletions

14
scss/mixins/_alert.scss Normal file
View File

@@ -0,0 +1,14 @@
// Alerts
@mixin alert-variant($background, $border, $body-color) {
background-color: $background;
border-color: $border;
color: $body-color;
hr {
border-top-color: darken($border, 5%);
}
.alert-link {
color: darken($body-color, 10%);
}
}