Files
notifications-admin/app/assets/stylesheets/components/banner.scss

96 lines
1.5 KiB
SCSS
Raw Normal View History

%banner,
.banner,
.banner-default {
2015-12-17 14:05:35 +00:00
@include core-19;
background: $turquoise;
color: $white;
display: block;
padding: $gutter-half;
margin: $gutter-half 0 $gutter 0;
text-align: left;
2015-12-17 14:05:35 +00:00
position: relative;
clear: both;
2015-12-17 14:05:35 +00:00
}
.banner-with-tick,
.banner-default-with-tick {
@extend %banner;
padding: $gutter-half ($gutter + $gutter-half);
2015-12-17 14:05:35 +00:00
&:before {
@include core-24;
content: '';
position: absolute;
top: $gutter-half;
left: $gutter-half;
margin-top: -2px;
}
}
.banner-info {
@extend .banner;
background: $govuk-blue;
color: $white;
a:link, a:visited {
color: $white;
text-decoration: underline;
}
a:hover {
color: $light-blue-25;
}
}
.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;
}
}
.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;
}
ol {
list-style-type: decimal;
}
}
.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;
}