notes/_sass/navigation.scss

194 lines
3.6 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-item {
@include fs-4;
position: relative;
margin: 0;
2018-11-15 20:12:12 +00:00
@include mq(md) {
@include fs-3;
2017-03-09 18:16:08 +00:00
}
2017-03-24 13:47:37 +00:00
.nav-list-link {
display: block;
min-height: $nav-list-item-height-sm;
line-height: #{$nav-list-item-height-sm - 2 * $sp-1};
padding-top: $sp-1;
padding-bottom: $sp-1;
@if $nav-list-expander-right {
padding-right: $nav-list-item-height-sm;
padding-left: $gutter-spacing-sm;
} @else {
padding-right: $gutter-spacing-sm;
padding-left: $nav-list-item-height-sm;
}
@include mq(md) {
min-height: $nav-list-item-height;
line-height: #{$nav-list-item-height - 2 * $sp-1};
@if $nav-list-expander-right {
padding-right: $nav-list-item-height;
padding-left: $gutter-spacing;
} @else {
padding-right: $gutter-spacing;
padding-left: $nav-list-item-height;
}
}
&.active {
font-weight: 600;
text-decoration: none;
}
&:hover,
&.active {
background-color: $feedback-color;
2017-03-24 13:47:37 +00:00
}
}
2017-03-09 18:16:08 +00:00
.nav-list-expander {
position: absolute;
@if $nav-list-expander-right {
right: 0;
}
width: $nav-list-item-height-sm;
height: $nav-list-item-height-sm;
padding-top: #{$nav-list-item-height-sm / 4};
padding-right: #{$nav-list-item-height-sm / 4};
padding-bottom: #{$nav-list-item-height-sm / 4};
padding-left: #{$nav-list-item-height-sm / 4};
fill: $link-color;
@include mq(md) {
width: $nav-list-item-height;
height: $nav-list-item-height;
padding-top: #{$nav-list-item-height / 4};
padding-right: #{$nav-list-item-height / 4};
padding-bottom: #{$nav-list-item-height / 4};
padding-left: #{$nav-list-item-height / 4};
}
&:hover {
background-color: $feedback-color;
}
@if $nav-list-expander-right {
svg {
transform: rotate(90deg);
}
}
}
2018-10-23 15:40:39 +00:00
> .nav-list {
display: none;
padding-left: $sp-3;
list-style: none;
2018-11-19 18:28:59 +00:00
.nav-list-item {
position: relative;
2018-11-19 18:28:59 +00:00
.nav-list-link {
color: $nav-child-link-color;
}
.nav-list-expander {
fill: $nav-child-link-color;
}
}
2018-11-19 18:28:59 +00:00
}
2017-03-09 18:16:08 +00:00
&.active {
> .nav-list-expander svg {
@if $nav-list-expander-right {
transform: rotate(-90deg);
} @else {
transform: rotate(90deg);
}
}
2017-03-09 18:16:08 +00:00
> .nav-list {
display: block;
}
}
2017-03-09 18:16:08 +00:00
}
}
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: "";
}
}
}