2016-01-11 11:27:42 +00:00
|
|
|
%banner,
|
2016-01-26 16:26:08 +00:00
|
|
|
.banner,
|
|
|
|
|
.banner-default {
|
2015-12-17 14:05:35 +00:00
|
|
|
|
|
|
|
|
@include core-19;
|
|
|
|
|
background: $turquoise;
|
|
|
|
|
color: $white;
|
|
|
|
|
display: block;
|
2016-01-11 11:27:42 +00:00
|
|
|
padding: $gutter-half;
|
2016-02-01 12:15:38 +00:00
|
|
|
margin: $gutter-half 0 $gutter 0;
|
2016-02-02 13:38:39 +00:00
|
|
|
text-align: left;
|
2015-12-17 14:05:35 +00:00
|
|
|
position: relative;
|
2016-02-03 15:24:50 +00:00
|
|
|
clear: both;
|
2015-12-17 14:05:35 +00:00
|
|
|
|
2016-01-11 11:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
2016-02-03 14:43:16 +00:00
|
|
|
.banner-with-tick,
|
|
|
|
|
.banner-default-with-tick {
|
2016-01-11 11:27:42 +00:00
|
|
|
|
|
|
|
|
@extend %banner;
|
2016-02-02 13:38:39 +00:00
|
|
|
padding: $gutter-half ($gutter + $gutter-half);
|
2016-01-11 11:27:42 +00:00
|
|
|
|
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
|
|
|
|
2016-01-22 10:57:49 +00:00
|
|
|
.banner-info {
|
|
|
|
|
@extend .banner;
|
|
|
|
|
background: $govuk-blue;
|
|
|
|
|
color: $white;
|
2016-02-03 10:25:59 +00:00
|
|
|
|
|
|
|
|
a:link, a:visited {
|
|
|
|
|
color: $white;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
color: $light-blue-25;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-22 10:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2016-02-02 09:38:31 +00:00
|
|
|
|
|
|
|
|
.banner-tip {
|
|
|
|
|
|
|
|
|
|
@extend .banner;
|
|
|
|
|
background: $yellow;
|
|
|
|
|
color: $text-colour;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
|
|
a:link, a:visited {
|
|
|
|
|
color: $text-colour;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-04 09:58:56 +00:00
|
|
|
ol {
|
|
|
|
|
list-style-type: decimal;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-02 09:38:31 +00:00
|
|
|
}
|
2016-02-04 12:20:24 +00:00
|
|
|
|
|
|
|
|
.banner-important {
|
|
|
|
|
@extend %banner;
|
|
|
|
|
background: $white;
|
|
|
|
|
color: $text-colour;
|
|
|
|
|
background-image: file-url("icon-important-2x.png");
|
|
|
|
|
background-size: 34px 34px;
|
|
|
|
|
background-position: 0 0;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
padding: 7px 0 5px 50px;
|
|
|
|
|
}
|