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: 16px;
line-height: 16px;
padding: 14px 14px 14px 54px;
position: relative;
&:before {
@include box-sizing(border-box);
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 22px;
content: "\f05a";
background-color: darken($background, 10%);
display: block;
position: absolute;
top: 0;
left: 0;
float: left;
width: 44px;
height: 44px;
padding: 9px;
line-height: 26px;
text-align: center;
}
}