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-03-07 18:47:05 +00:00
|
|
|
&-title {
|
|
|
|
|
@include bold-24;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 10px 0 5px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-bullet {
|
|
|
|
|
@include copy-19;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-11 11:27:42 +00:00
|
|
|
}
|
|
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
%banner-with-tick,
|
|
|
|
|
.banner-with-tick {
|
2016-02-02 13:38:39 +00:00
|
|
|
padding: $gutter-half ($gutter + $gutter-half);
|
2016-02-19 15:02:13 +00:00
|
|
|
background-image: file-url('tick-white.png');
|
|
|
|
|
background-size: 19px;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: $gutter-half $gutter-half;
|
|
|
|
|
font-weight: bold;
|
2015-12-17 14:05:35 +00:00
|
|
|
}
|
2016-01-14 09:44:06 +00:00
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
.banner-default-with-tick {
|
|
|
|
|
@extend %banner;
|
|
|
|
|
@extend %banner-with-tick;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-14 09:44:06 +00:00
|
|
|
.banner-dangerous {
|
|
|
|
|
|
2016-02-08 11:11:55 +00:00
|
|
|
@extend %banner;
|
|
|
|
|
@include bold-19;
|
2016-01-14 09:44:06 +00:00
|
|
|
background: $white;
|
|
|
|
|
color: $error-colour;
|
|
|
|
|
border: 5px solid $error-colour;
|
|
|
|
|
margin: 15px 0;
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
|
|
.button {
|
|
|
|
|
@include button($error-colour);
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-22 09:36:42 +01:00
|
|
|
a {
|
|
|
|
|
|
|
|
|
|
&:link,
|
|
|
|
|
&:visited {
|
|
|
|
|
color: $error-colour;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $mellow-red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-14 09:44:06 +00:00
|
|
|
}
|
2016-02-02 09:38:31 +00:00
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
.banner-mode {
|
|
|
|
|
|
|
|
|
|
@extend %banner;
|
|
|
|
|
background: $govuk-blue;
|
|
|
|
|
color: $white;
|
2016-07-01 11:07:44 +01:00
|
|
|
margin: 0 0 $gutter 0;
|
2016-04-01 10:54:55 +01:00
|
|
|
padding: $gutter-half;
|
2016-03-17 11:45:48 +00:00
|
|
|
|
2016-04-01 10:54:55 +01:00
|
|
|
p {
|
2016-03-17 14:56:52 +00:00
|
|
|
margin: 0 0 10px 0;
|
2016-03-17 11:45:48 +00:00
|
|
|
}
|
|
|
|
|
|
2016-07-01 11:07:44 +01:00
|
|
|
a {
|
2016-04-05 13:44:53 +01:00
|
|
|
|
|
|
|
|
&:link,
|
|
|
|
|
&:visited {
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:active {
|
|
|
|
|
color: $light-blue-25;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
|
&:focus {
|
|
|
|
|
background-color: $yellow;
|
|
|
|
|
color: $govuk-blue;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-01 10:54:55 +01:00
|
|
|
}
|
|
|
|
|
|
2016-07-01 11:07:44 +01:00
|
|
|
&-action {
|
|
|
|
|
display: block;
|
|
|
|
|
text-align: right;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-01 10:54:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.banner-tour {
|
|
|
|
|
|
|
|
|
|
@extend %banner;
|
|
|
|
|
background: $govuk-blue;
|
|
|
|
|
color: $white;
|
2016-12-14 16:40:50 +00:00
|
|
|
margin-top: 10px;
|
2016-05-20 12:05:05 +01:00
|
|
|
padding: $gutter;
|
|
|
|
|
height: 475px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: inset 0 -1em 1.6em 0 rgba(0, 0, 0, 0.05);
|
|
|
|
|
|
|
|
|
|
.heading-medium {
|
|
|
|
|
@include core-24;
|
2016-04-01 10:54:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
2016-05-20 12:05:05 +01:00
|
|
|
|
|
|
|
|
margin-top: 0;
|
2016-04-01 10:54:55 +01:00
|
|
|
margin-bottom: $gutter;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
2016-04-13 12:50:13 +01:00
|
|
|
margin-bottom: 0;
|
2016-04-01 10:54:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& + p {
|
|
|
|
|
margin-top: -$gutter-half;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
a {
|
|
|
|
|
|
2016-05-20 12:05:05 +01:00
|
|
|
@include bold-19;
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0 ;
|
|
|
|
|
margin: 0 0 $gutter 0;
|
2016-04-01 10:54:55 +01:00
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
&:link,
|
|
|
|
|
&:visited {
|
|
|
|
|
color: $white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:active {
|
2016-04-01 10:54:55 +01:00
|
|
|
background-color: $link-hover-colour;
|
|
|
|
|
outline: 10px solid $link-hover-colour;
|
2016-03-17 11:45:48 +00:00
|
|
|
}
|
|
|
|
|
|
2016-04-01 10:54:55 +01:00
|
|
|
&:active,
|
|
|
|
|
&:focus {
|
|
|
|
|
background-color: $yellow;
|
|
|
|
|
outline: 10px solid $yellow;
|
|
|
|
|
}
|
2016-03-17 14:56:52 +00:00
|
|
|
|
2016-04-01 10:54:55 +01:00
|
|
|
}
|
2016-03-17 14:56:52 +00:00
|
|
|
|
2016-03-17 11:45:48 +00:00
|
|
|
}
|
2016-09-20 12:12:58 +01:00
|
|
|
|
|
|
|
|
.banner-warning {
|
|
|
|
|
|
|
|
|
|
@extend %banner;
|
|
|
|
|
@include bold-19;
|
|
|
|
|
background: $yellow;
|
|
|
|
|
color: $text-colour;
|
|
|
|
|
border: 5px solid $text-colour;
|
|
|
|
|
margin: $gutter 0 $gutter 0;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
|
|
.heading-medium {
|
|
|
|
|
@include bold-24;
|
|
|
|
|
margin: 0 0 $gutter-half 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:link,
|
|
|
|
|
a:visited {
|
|
|
|
|
color: $text-colour;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|