2016-01-11 11:27:42 +00:00
|
|
|
%banner,
|
2015-12-17 14:05:35 +00:00
|
|
|
.banner {
|
|
|
|
|
|
|
|
|
|
@include core-19;
|
|
|
|
|
background: $turquoise;
|
|
|
|
|
color: $white;
|
|
|
|
|
display: block;
|
2016-01-11 11:27:42 +00:00
|
|
|
padding: $gutter-half;
|
2015-12-17 14:05:35 +00:00
|
|
|
margin: 0 0 $gutter 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2016-01-11 11:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner-with-tick {
|
|
|
|
|
|
|
|
|
|
@extend %banner;
|
|
|
|
|
padding: $gutter-half $gutter;
|
|
|
|
|
|
2015-12-17 14:05:35 +00:00
|
|
|
&:before {
|
|
|
|
|
@include core-24;
|
|
|
|
|
content: '✔';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: $gutter-half;
|
|
|
|
|
left: $gutter-half;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2016-01-14 09:44:06 +00:00
|
|
|
|
|
|
|
|
.banner-dangerous {
|
|
|
|
|
|
|
|
|
|
@extend .banner;
|
|
|
|
|
background: $white;
|
|
|
|
|
color: $error-colour;
|
|
|
|
|
border: 5px solid $error-colour;
|
|
|
|
|
margin: 15px 0;
|
|
|
|
|
@include bold-19;
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
@include button($error-colour);
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|