mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
14 lines
257 B
Text
14 lines
257 B
Text
// Alerts
|
|
|
|
.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%);
|
|
}
|
|
}
|