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

36 lines
423 B
SCSS
Raw Normal View History

.navigation {
padding: $gutter-two-thirds $gutter-half 0 0;
2016-02-08 11:11:55 +00:00
ul,
h2 {
@include core-19;
margin: 10px 20px 15px 0;
list-style-type: none;
}
h2 {
font-weight: bold;
margin-bottom: 10px;
}
2016-01-18 14:31:27 +00:00
li {
margin: 10px 0 0 0;
}
2016-02-08 11:11:55 +00:00
a {
&:link,
&:visited {
text-decoration: none;
}
&:hover {
color: $link-hover-colour;
text-decoration: underline;
}
}
}