41 lines
749 B
SCSS
41 lines
749 B
SCSS
.alert{
|
|
border: 0;
|
|
border-radius: 0;
|
|
color: #FFFFFF;
|
|
padding: 10px 15px;
|
|
font-size: 14px;
|
|
|
|
.container &{
|
|
border-radius: 4px;
|
|
|
|
}
|
|
.navbar &{
|
|
border-radius: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 85px;
|
|
width: 100%;
|
|
z-index: 3;
|
|
}
|
|
.navbar:not(.navbar-transparent) &{
|
|
top: 70px;
|
|
}
|
|
}
|
|
.alert-info{
|
|
background-color: $bg-info;
|
|
color: $info-states-color;
|
|
}
|
|
.alert-success {
|
|
background-color: $bg-success;
|
|
color: $success-states-color;
|
|
}
|
|
.alert-warning {
|
|
background-color: $bg-warning;
|
|
color: $warning-states-color;
|
|
}
|
|
.alert-danger {
|
|
background-color: $bg-danger;
|
|
color: $danger-states-color;
|
|
}
|
|
|