mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-01 07:11:41 +00:00
12ed7c90ae
Added new ISO country code flag icons to asset pipeline Lots and lots of new style changes Began converting to JS to coffeescript
34 lines
434 B
SCSS
34 lines
434 B
SCSS
/*
|
|
Flash Messages
|
|
*/
|
|
|
|
.flash {
|
|
@include span-columns(12);
|
|
margin-bottom: em(20);
|
|
|
|
&.notice {
|
|
@include flash;
|
|
}
|
|
|
|
&.success {
|
|
@include flash($flash-success);
|
|
&:before {
|
|
content: "\f00c";
|
|
}
|
|
}
|
|
|
|
&.error {
|
|
@include flash($flash-error);
|
|
&:before {
|
|
content: "\f00d";
|
|
}
|
|
}
|
|
|
|
&.warning,
|
|
&.alert {
|
|
@include flash($flash-warning);
|
|
&:before {
|
|
content: "\f071";
|
|
}
|
|
}
|
|
}
|