50 lines
882 B
SCSS
50 lines
882 B
SCSS
#flash_notice,
|
|
#flash_alert,
|
|
#flash_error {
|
|
position : fixed;
|
|
z-index: 999;
|
|
top : -100px;
|
|
left : 0;
|
|
width : 100%;
|
|
|
|
text-align : center;
|
|
color: $text-dark-grey;
|
|
|
|
&.expose {
|
|
@include animation(expose, 10s)
|
|
}
|
|
|
|
.message {
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.8);
|
|
|
|
display : inline-block;
|
|
padding: 10px 12px;
|
|
min-width: 400px;
|
|
max-width: 800px;
|
|
|
|
color : #fff;
|
|
background-color : rgba(0,0,0,0.8);
|
|
border : 1px solid rgba(255,255,255,0.7);
|
|
border-radius: 6px;
|
|
|
|
font-weight: bold;
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
#flash_notice {
|
|
.message {
|
|
color: $text-dark-grey;
|
|
background-color: #F4F899;
|
|
border-color: darken(#F4F899, 40%);
|
|
}
|
|
}
|
|
|
|
#flash_error,
|
|
#flash_alert {
|
|
.message {
|
|
background-color: #CA410B;
|
|
border-color: darken(#CA410B, 10%);
|
|
}
|
|
}
|