ensl.org/app/assets/stylesheets/mixins/_flashes.scss

32 lines
647 B
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Flash Messages
*/
@mixin flash($background: $flash-notice, $text: $flash-text) {
background-color: $background;
color: $text;
font-size: em(16);
line-height: em(16);
padding: em(14) em(14) em(14) em(54);
2014-04-06 14:14:03 +00:00
position: relative;
2014-04-06 14:14:03 +00:00
&:before {
@include box-sizing(border-box);
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
content: "\f05a";
background-color: darken($background, 10%);
display: block;
position: absolute;
top: 0;
left: 0;
float: left;
width: em(44);
height: em(44);
padding: em(9);
line-height: em(26);
2014-04-06 14:14:03 +00:00
text-align: center;
}
}