mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
- remove black border from banner - make banners have internal columns - make nav 2/3rd width, 19px text and more spaced out - only show the ‘restricted mode’ banner where it’s needed - rename ‘restricted mode’ to ‘trial mode’
32 lines
413 B
SCSS
32 lines
413 B
SCSS
.navigation {
|
|
|
|
padding: 20px 0 0 0;
|
|
|
|
ul, h2 {
|
|
@include core-19;
|
|
border-bottom: 1px solid $border-colour;
|
|
margin: 10px 20px 15px 0;
|
|
list-style-type: none;
|
|
padding: 0 0 10px 0;
|
|
}
|
|
|
|
h2 {
|
|
font-weight: bold;
|
|
}
|
|
|
|
li {
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
a:link,
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: $link-hover-colour;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
}
|