59 lines
1.2 KiB
SCSS
59 lines
1.2 KiB
SCSS
@charset "UTF-8";
|
|
|
|
.alert {
|
|
border: 0;
|
|
border-radius: 0;
|
|
font-size: .875rem;
|
|
padding: 20px 15px;
|
|
line-height: 24px;
|
|
|
|
//@include shadow-z-2();
|
|
|
|
b{
|
|
font-weight: $font-weight-bold;
|
|
text-transform: uppercase;
|
|
font-size: $font-size-small;
|
|
}
|
|
// SASS conversion note: please mirror any content change in _mixins-shared.scss alert-variations-content
|
|
//@include alert-variations(unquote(".alert"), unquote(""), $mdb-text-color-light);
|
|
|
|
//&-info, &-danger, &-warning, &-success {
|
|
// color: $mdb-text-color-light;
|
|
//}
|
|
|
|
&-default {
|
|
a, .alert-link {
|
|
color: $mdb-text-color-primary;
|
|
}
|
|
}
|
|
|
|
.alert-icon{
|
|
display: block;
|
|
float: left;
|
|
margin-right: $margin-base;
|
|
|
|
i{
|
|
margin-top: -7px;
|
|
top: 5px;
|
|
position: relative;
|
|
}
|
|
}
|
|
.close{
|
|
color: $white-color;
|
|
text-shadow: none;
|
|
opacity: .9;
|
|
|
|
i{
|
|
font-size: 20px;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus{
|
|
opacity: 1;
|
|
}
|
|
}
|
|
code.highlighter-rouge {
|
|
color: inherit;
|
|
background: rgba(0,0,0,.06);
|
|
}
|
|
}
|