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

37 lines
443 B
SCSS
Raw Normal View History

2015-12-17 10:28:15 +00:00
.navigation {
2015-12-14 16:37:15 +00:00
2016-02-02 13:38:39 +00:00
padding: 20px 0 0 0;
2015-12-14 16:37:15 +00:00
2016-02-08 11:11:55 +00:00
ul,
h2 {
2016-02-02 13:38:39 +00:00
@include core-19;
2015-12-17 10:28:15 +00:00
border-bottom: 1px solid $border-colour;
2016-02-02 13:38:39 +00:00
margin: 10px 20px 15px 0;
2015-12-17 10:28:15 +00:00
list-style-type: none;
2016-02-02 13:38:39 +00:00
padding: 0 0 10px 0;
2016-01-18 14:31:27 +00:00
}
h2 {
font-weight: bold;
}
2016-01-18 14:31:27 +00:00
li {
2016-02-02 13:38:39 +00:00
margin: 10px 0 0 0;
2015-12-17 10:28:15 +00:00
}
2015-12-14 16:37:15 +00:00
2016-02-08 11:11:55 +00:00
a {
&:link,
&:visited {
text-decoration: none;
}
&:hover {
color: $link-hover-colour;
text-decoration: underline;
}
2015-12-17 10:28:15 +00:00
}
}