Files
notifications-admin/app/assets/stylesheets/components/banner.scss
Chris Hill-Scott 46db79c421 Add a new style of banner—‘tip’
This banner is meant for onboarding users and giving them prompts about what
they should do next.
2016-02-02 09:44:24 +00:00

70 lines
1.0 KiB
SCSS

%banner,
.banner,
.banner-default {
@include core-19;
background: $turquoise;
color: $white;
display: block;
padding: $gutter-half;
margin: $gutter-half 0 $gutter 0;
text-align: center;
position: relative;
}
.banner-with-tick {
@extend %banner;
padding: $gutter-half $gutter;
&: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;
}
.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;
border: 5px solid $text-colour;
font-weight: bold;
a:link, a:visited {
color: $text-colour;
text-decoration: underline;
}
}