mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
960e8b5a21
Added styling to private messages Updated puma config and deployment scripts
31 lines
645 B
SCSS
31 lines
645 B
SCSS
/*
|
|
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);
|
|
position: relative;
|
|
|
|
&: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: 100%;
|
|
padding: em(9);
|
|
line-height: em(26);
|
|
text-align: center;
|
|
}
|
|
}
|