notes/_sass/navigation.scss

140 lines
1.8 KiB
SCSS
Raw Normal View History

2017-03-24 13:47:37 +00:00
//
// Main nav, breadcrumb, etc...
//
.nav-list {
2017-03-09 18:16:08 +00:00
padding: 0;
margin-top: 0;
2018-10-23 15:40:39 +00:00
margin-bottom: 0;
2017-03-27 01:09:19 +00:00
list-style: none;
2017-03-09 18:16:08 +00:00
}
.nav-list-child-list {
2017-03-09 18:16:08 +00:00
padding-left: $sp-3;
2017-03-27 01:09:19 +00:00
list-style: none;
2017-03-09 18:16:08 +00:00
.nav-list-link {
2018-11-15 20:12:12 +00:00
color: $nav-child-link-color;
2017-03-09 18:16:08 +00:00
}
.nav-list-item {
2018-11-15 20:12:12 +00:00
position: relative;
2017-03-09 18:16:08 +00:00
&::before {
position: absolute;
2017-03-27 01:09:19 +00:00
margin-top: 0.3em;
2017-03-09 18:16:08 +00:00
margin-left: -0.8em;
2018-11-18 16:07:45 +00:00
color: rgba($body-text-color, 0.3);
2017-03-27 01:09:19 +00:00
content: "- ";
2017-03-09 18:16:08 +00:00
}
2017-03-24 13:47:37 +00:00
&.active {
&::before {
2018-11-15 20:12:12 +00:00
color: $body-text-color;
2017-03-24 13:47:37 +00:00
}
}
2017-03-09 18:16:08 +00:00
}
}
.nav-list-item {
2018-10-23 15:40:39 +00:00
@include fs-4;
2017-03-27 01:09:19 +00:00
margin: 0;
2018-10-23 15:40:39 +00:00
@include mq(md) {
@include fs-3;
}
2018-11-19 18:28:59 +00:00
.nav-list-child-list {
2018-11-19 18:28:59 +00:00
display: none;
}
&.active {
.nav-list-child-list {
2018-11-19 18:28:59 +00:00
display: block;
}
}
2017-03-09 18:16:08 +00:00
}
.nav-list-link {
2017-03-09 18:16:08 +00:00
display: block;
2017-03-27 01:09:19 +00:00
padding-top: $sp-1;
padding-bottom: $sp-1;
2017-03-09 18:16:08 +00:00
&.active {
2017-03-27 01:09:19 +00:00
font-weight: 600;
2018-11-15 20:12:12 +00:00
color: $body-heading-color;
2017-03-09 18:16:08 +00:00
text-decoration: none;
}
}
2017-03-24 13:47:37 +00:00
// Small screen nav
.site-nav {
2017-03-24 13:47:37 +00:00
display: none;
&.nav-open {
display: block;
}
@include mq(md) {
display: block;
}
}
.aux-nav {
align-self: center;
.aux-nav-list {
padding: 0;
margin: 0;
list-style: none;
@include fs-2;
}
.aux-nav-list-item {
display: inline-block;
margin-right: $sp-2;
@include fs-2;
&:last-child {
margin-right: 0;
}
}
2017-03-24 13:47:37 +00:00
}
// Breadcrumb nav
2018-11-19 18:29:17 +00:00
.breadcrumb-nav {
@include mq(md) {
margin-top: -$sp-4;
}
}
2017-03-24 13:47:37 +00:00
2017-03-09 18:16:08 +00:00
.breadcrumb-nav-list {
padding-left: 0;
2017-03-27 01:09:19 +00:00
margin-bottom: $sp-3;
list-style: none;
2017-03-09 18:16:08 +00:00
}
.breadcrumb-nav-list-item {
display: table-cell;
@include fs-2;
2017-03-24 13:47:37 +00:00
&::before {
display: none;
}
2017-03-09 18:16:08 +00:00
&::after {
display: inline-block;
margin-right: $sp-2;
2017-03-27 01:09:19 +00:00
margin-left: $sp-2;
2017-03-09 18:16:08 +00:00
color: $grey-dk-000;
2017-03-27 01:09:19 +00:00
content: "/";
2017-03-09 18:16:08 +00:00
}
&:last-child {
&::after {
content: "";
}
}
}