mirror of
https://github.com/SimpleWebConf/SimpleWebConf.github.io.git
synced 2026-03-10 08:51:23 +00:00
15 lines
263 B
SCSS
15 lines
263 B
SCSS
// Alerts
|
|
|
|
@mixin alert-variant($background, $border, $text-color) {
|
|
background-color: $background;
|
|
border-color: $border;
|
|
color: $text-color;
|
|
|
|
hr {
|
|
border-top-color: darken($border, 5%);
|
|
}
|
|
.alert-link {
|
|
color: darken($text-color, 10%);
|
|
}
|
|
}
|