40 lines
504 B
SCSS
40 lines
504 B
SCSS
![]() |
|
||
|
#flashContainer {
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
.alert.popup {
|
||
|
position: fixed;
|
||
|
top: 15px;
|
||
|
left: 50%;
|
||
|
width: 30em;
|
||
|
margin-left: -15em;
|
||
|
}
|
||
|
|
||
|
.alert {
|
||
|
}
|
||
|
|
||
|
.flash {
|
||
|
text-align: center;
|
||
|
width: 30em;
|
||
|
padding: 5px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.error {
|
||
|
background-color: #fff6ff;
|
||
|
border: 3px solid #fda8a8;
|
||
|
}
|
||
|
|
||
|
.warning {
|
||
|
background-color: #ffffdd;
|
||
|
border: 3px solid #ffdd00;
|
||
|
}
|
||
|
|
||
|
.notice {
|
||
|
background-color: #D8F6CE;
|
||
|
border: 3px solid #3ADF00;
|
||
|
}
|