mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
27 lines
486 B
Plaintext
27 lines
486 B
Plaintext
// main: material.less
|
|
|
|
.alert, .alert-success, .alert-info, .alert-warning, .alert-danger {
|
|
border: 0px;
|
|
border-radius: 0;
|
|
a, .alert-link {
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
|
|
.alert-success {
|
|
color: #FFFFFF;
|
|
background-color: @alert-success;
|
|
}
|
|
.alert-info {
|
|
color: #FFFFFF;
|
|
background-color: @alert-info;
|
|
}
|
|
.alert-warning {
|
|
color: #FFFFFF;
|
|
background-color: @alert-warning;
|
|
}
|
|
.alert-danger {
|
|
color: #FFFFFF;
|
|
background-color: @alert-danger;
|
|
}
|