parsley/app/assets/stylesheets/flash_messages.scss

44 lines
539 B
SCSS
Raw Normal View History

2016-01-12 18:43:00 -06:00
2016-01-14 11:16:05 -06:00
#flashHolder {
display: none;
}
2016-01-12 18:43:00 -06:00
#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;
}