notes/_sass/navigation.scss

149 lines
2.0 KiB
SCSS
Raw Normal View History

2017-03-24 13:47:37 +00:00
//
// Main nav, breadcrumb, etc...
//
.site-title {
display: block;
flex: 1 1 auto;
2018-11-15 20:12:12 +00:00
color: $body-heading-color;
background-color: $sidebar-color;
2017-03-24 13:47:37 +00:00
@include mq(md) {
position: absolute;
2018-10-23 18:13:45 +00:00
top: 0;
2017-03-24 13:47:37 +00:00
right: 0;
2018-10-25 15:17:10 +00:00
z-index: 101;
2018-10-23 18:13:45 +00:00
height: 60px;
padding-top: $sp-4;
border-bottom: $border $border-color;
2017-03-24 13:47:37 +00:00
}
}
2017-03-09 18:16:08 +00:00
.navigation-list {
padding: 0;
margin-top: $sp-4;
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
@include mq(md) {
margin-top: 0;
2017-03-09 18:16:08 +00:00
}
}
.navigation-list-child-list {
padding-left: $sp-3;
2017-03-27 01:09:19 +00:00
list-style: none;
2017-03-09 18:16:08 +00:00
.navigation-list-link {
2018-11-15 20:12:12 +00:00
color: $nav-child-link-color;
2017-03-09 18:16:08 +00:00
}
.navigation-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
}
}
.navigation-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
.navigation-list-child-list {
display: none;
}
&.active {
.navigation-list-child-list {
display: block;
}
}
2017-03-09 18:16:08 +00:00
}
.navigation-list-link {
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
2017-11-08 16:23:05 +00:00
.main-nav,
.aux-nav {
2017-03-24 13:47:37 +00:00
display: none;
&.nav-open {
display: block;
}
@include mq(md) {
display: block;
}
}
.navigation-list-toggle {
position: absolute;
right: $sp-4;
@include mq(md) {
display: none !important;
}
}
// 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: "";
}
}
}