mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
15 lines
257 B
Plaintext
Executable File
15 lines
257 B
Plaintext
Executable File
// 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%);
|
|
}
|
|
}
|