2016-03-10 19:06:59 +01:00
|
|
|
/* ==========================================================================
|
|
|
|
NAVIGATION
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Breadcrumb navigation links
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.breadcrumbs {
|
2016-03-15 17:34:14 +01:00
|
|
|
@include container;
|
|
|
|
@include clearfix;
|
2016-03-23 16:42:58 +01:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2016-03-15 17:34:14 +01:00
|
|
|
padding-left: 2em;
|
|
|
|
padding-right: 2em;
|
2016-03-11 21:54:16 +01:00
|
|
|
font-family: $sans-serif;
|
2016-08-08 22:01:37 +02:00
|
|
|
-webkit-animation: intro 0.3s both;
|
|
|
|
animation: intro 0.3s both;
|
|
|
|
-webkit-animation-delay: 0.30s;
|
|
|
|
animation-delay: 0.30s;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-23 16:06:58 +01:00
|
|
|
@include breakpoint($large) {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint($x-large) {
|
|
|
|
max-width: $x-large;
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
ol {
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-23 16:06:58 +01:00
|
|
|
@include breakpoint($large) {
|
|
|
|
@include span(10 of 12 last);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint($x-large) {
|
|
|
|
@include prefix(0.5 of 12);
|
2016-03-15 17:34:14 +01:00
|
|
|
}
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
.current {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Post pagination navigation links
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.pagination {
|
2016-03-30 05:13:00 +02:00
|
|
|
@include full();
|
|
|
|
@include clearfix();
|
2016-03-30 21:26:25 +02:00
|
|
|
margin-top: 1em;
|
|
|
|
padding-top: 1em;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2016-03-29 03:48:42 +02:00
|
|
|
font-family: $sans-serif;
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-10 19:06:59 +01:00
|
|
|
li {
|
2016-03-30 21:26:25 +02:00
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin-left: -1px;
|
|
|
|
|
|
|
|
a {
|
2016-12-12 20:49:53 +01:00
|
|
|
display: block;
|
2016-03-30 21:26:25 +02:00
|
|
|
margin-bottom: 0.25em;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
font-family: $sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.5;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: mix(#fff, $gray, 25%);
|
|
|
|
border: 1px solid $light-gray;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:hover {
|
2016-04-06 20:46:35 +02:00
|
|
|
color: $link-color-hover;
|
2016-03-30 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
2016-04-01 22:08:22 +02:00
|
|
|
color: #fff;
|
|
|
|
background: $primary-color;
|
2016-03-30 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
2016-08-12 04:28:35 +02:00
|
|
|
color: mix(#fff, $gray, 75%);
|
2016-03-30 21:26:25 +02:00
|
|
|
pointer-events: none;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-30 21:26:25 +02:00
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
2016-03-21 21:36:24 +01:00
|
|
|
|
2016-03-30 21:26:25 +02:00
|
|
|
a {
|
|
|
|
border-top-left-radius: $border-radius;
|
|
|
|
border-bottom-left-radius: $border-radius;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
a {
|
|
|
|
border-top-right-radius: $border-radius;
|
|
|
|
border-bottom-right-radius: $border-radius;
|
|
|
|
}
|
|
|
|
}
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
2016-03-30 05:13:00 +02:00
|
|
|
|
|
|
|
/* next/previous buttons */
|
|
|
|
&--pager {
|
|
|
|
display: block;
|
|
|
|
padding: 1em 2em;
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
font-family: $sans-serif;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-5;
|
2016-03-30 05:13:00 +02:00
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
2016-11-04 16:36:31 +01:00
|
|
|
color: $link-color;
|
2016-03-30 05:13:00 +02:00
|
|
|
border: 1px solid $light-gray;
|
|
|
|
border-radius: $border-radius;
|
2016-03-30 21:26:25 +02:00
|
|
|
|
2016-03-30 05:13:00 +02:00
|
|
|
&:hover {
|
2016-04-06 20:46:35 +02:00
|
|
|
color: $link-color-hover;
|
2016-03-30 05:13:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-left: -1px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2016-03-30 21:26:25 +02:00
|
|
|
|
|
|
|
&.disabled {
|
2016-08-12 04:28:35 +02:00
|
|
|
color: mix(#fff, $gray, 75%);
|
2016-03-30 21:26:25 +02:00
|
|
|
pointer-events: none;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2016-03-30 05:13:00 +02:00
|
|
|
}
|
2016-03-21 21:01:19 +01:00
|
|
|
}
|
|
|
|
|
2016-03-30 21:26:25 +02:00
|
|
|
.page__content + .pagination,
|
|
|
|
.page__meta + .pagination,
|
|
|
|
.page__share + .pagination,
|
|
|
|
.page__comments + .pagination {
|
|
|
|
margin-top: 2em;
|
|
|
|
padding-top: 2em;
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
}
|
|
|
|
|
2016-03-21 21:01:19 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Priority plus navigation
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.greedy-nav {
|
|
|
|
position: relative;
|
2017-02-14 04:15:57 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-align: center;
|
|
|
|
align-items: center;
|
2016-03-30 05:13:00 +02:00
|
|
|
background: $background-color;
|
2016-03-21 21:01:19 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2016-04-04 03:23:24 +02:00
|
|
|
margin: 0 1rem;
|
|
|
|
padding: 0.5rem 0;
|
2016-04-05 21:18:05 +02:00
|
|
|
color: $masthead-link-color;
|
2016-03-21 21:01:19 +01:00
|
|
|
text-decoration: none;
|
2016-03-23 03:59:39 +01:00
|
|
|
|
|
|
|
&:hover {
|
2016-04-05 21:18:05 +02:00
|
|
|
color: $masthead-link-color-hover;
|
2016-03-23 03:59:39 +01:00
|
|
|
}
|
2017-02-14 04:15:57 +01:00
|
|
|
|
|
|
|
&.site-title {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2016-03-21 21:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2016-04-04 03:23:24 +02:00
|
|
|
padding: 0 0.5rem;
|
2017-02-14 19:13:28 +01:00
|
|
|
align-self: stretch;
|
2016-03-21 21:01:19 +01:00
|
|
|
border: 0;
|
|
|
|
outline: none;
|
|
|
|
color: #fff;
|
2017-02-14 19:13:28 +01:00
|
|
|
background-color: $primary-color;
|
2016-03-21 21:01:19 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.visible-links {
|
2017-02-14 04:15:57 +01:00
|
|
|
display: -webkit-box;
|
|
|
|
display: flex;
|
|
|
|
-webkit-box-pack: end;
|
|
|
|
justify-content: flex-end;
|
|
|
|
-webkit-box-flex: 1;
|
|
|
|
flex: 1;
|
2017-02-14 18:42:50 +01:00
|
|
|
padding-right: 2rem;
|
2017-02-14 04:15:57 +01:00
|
|
|
overflow: hidden;
|
2016-03-21 21:01:19 +01:00
|
|
|
|
|
|
|
li {
|
2017-02-14 04:15:57 +01:00
|
|
|
-webkit-box-flex: 0;
|
|
|
|
flex: none;
|
2016-03-21 21:01:19 +01:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
a {
|
2016-03-23 03:59:39 +01:00
|
|
|
margin-right: 0;
|
2016-03-21 21:01:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 03:59:39 +01:00
|
|
|
|
|
|
|
a {
|
2016-03-24 20:46:06 +01:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
2016-05-31 18:31:39 +02:00
|
|
|
left: 0;
|
2016-03-24 20:46:06 +01:00
|
|
|
bottom: 0;
|
|
|
|
height: 4px;
|
2016-04-05 21:18:05 +02:00
|
|
|
background: mix(#fff, $primary-color, 50%);
|
2016-05-31 18:31:39 +02:00
|
|
|
width: 100%;
|
2016-08-08 22:01:37 +02:00
|
|
|
-webkit-transition: $global-transition;
|
2016-04-05 21:18:05 +02:00
|
|
|
transition: $global-transition;
|
2016-10-09 03:03:54 +02:00
|
|
|
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
|
|
|
|
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
|
2016-03-24 20:46:06 +01:00
|
|
|
}
|
2016-03-23 03:59:39 +01:00
|
|
|
|
2016-05-31 18:31:39 +02:00
|
|
|
&:hover:before {
|
2016-08-08 22:01:37 +02:00
|
|
|
-webkit-transform: scaleX(1);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: scaleX(1);
|
|
|
|
transform: scaleX(1); /* reveal*/
|
2016-03-23 03:59:39 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-links {
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
right: 0;
|
|
|
|
margin-top: 15px;
|
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
background: #fff;
|
2016-10-08 22:38:18 +02:00
|
|
|
box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12);
|
2016-03-21 21:01:19 +01:00
|
|
|
|
2017-02-14 04:15:57 +01:00
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-21 21:01:19 +01:00
|
|
|
a {
|
2016-03-23 03:59:39 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 10px 20px;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-5;
|
2016-03-23 03:59:39 +01:00
|
|
|
|
|
|
|
&:hover {
|
2016-04-05 21:18:05 +02:00
|
|
|
color: $masthead-link-color-hover;
|
2017-07-07 21:11:58 +02:00
|
|
|
background: $navicon-link-color-hover;
|
2016-03-23 03:59:39 +01:00
|
|
|
}
|
2016-03-21 21:01:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: -11px;
|
|
|
|
right: 10px;
|
|
|
|
width: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 10px 10px;
|
|
|
|
border-color: $border-color transparent;
|
|
|
|
display: block;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: -10px;
|
|
|
|
right: 10px;
|
|
|
|
width: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 10px 10px;
|
|
|
|
border-color: #fff transparent;
|
|
|
|
display: block;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
border-bottom: 1px solid $border-color;
|
2016-03-23 03:59:39 +01:00
|
|
|
|
2016-03-21 21:01:19 +01:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-25 19:50:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Navigation list
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.nav__list {
|
2016-11-17 21:38:55 +01:00
|
|
|
margin-bottom: 1.5em;
|
2016-03-30 22:59:48 +02:00
|
|
|
|
2016-11-17 21:06:07 +01:00
|
|
|
input[type="checkbox"],
|
|
|
|
label {
|
|
|
|
display: none;
|
2016-04-01 03:41:00 +02:00
|
|
|
}
|
|
|
|
|
2016-11-21 15:49:30 +01:00
|
|
|
@include breakpoint(max-width ($large - 1px)) {
|
2016-03-25 19:50:59 +01:00
|
|
|
|
2016-11-17 21:06:07 +01:00
|
|
|
label {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2016-11-17 21:13:25 +01:00
|
|
|
padding: 0.5em 2.5em 0.5em 1em;
|
2016-11-17 21:17:40 +01:00
|
|
|
color: $gray;
|
2016-11-17 21:06:07 +01:00
|
|
|
font-size: $type-size-6;
|
2016-11-17 21:13:25 +01:00
|
|
|
font-weight: bold;
|
2016-11-17 21:06:07 +01:00
|
|
|
border: 1px solid $light-gray;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
z-index: 20;
|
|
|
|
-webkit-transition: 0.2s ease-out;
|
|
|
|
transition: 0.2s ease-out;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2016-11-17 21:13:25 +01:00
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
top: 1.25em;
|
|
|
|
width: 0.75em;
|
|
|
|
height: 0.125em;
|
|
|
|
line-height: 1;
|
2016-11-17 21:17:40 +01:00
|
|
|
background-color: $gray;
|
2017-02-14 04:15:57 +01:00
|
|
|
-webkit-transition: 0.2s ease-out;
|
2016-11-17 21:13:25 +01:00
|
|
|
transition: 0.2s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
2017-02-14 04:15:57 +01:00
|
|
|
-webkit-transform: rotate(90deg);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: rotate(90deg);
|
|
|
|
transform: rotate(90deg);
|
2016-11-17 21:13:25 +01:00
|
|
|
}
|
|
|
|
|
2016-11-17 21:06:07 +01:00
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
border-color: $gray;
|
|
|
|
background-color: mix(white, #000, 20%);
|
2016-11-17 21:13:25 +01:00
|
|
|
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2016-11-17 21:06:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* selected*/
|
|
|
|
input:checked + label {
|
|
|
|
color: white;
|
|
|
|
background-color: mix(white, #000, 20%);
|
2016-11-17 21:13:25 +01:00
|
|
|
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 04:15:57 +01:00
|
|
|
/* on hover show expand*/
|
2016-11-17 21:13:25 +01:00
|
|
|
label:hover:after {
|
2017-02-14 04:15:57 +01:00
|
|
|
-webkit-transform: rotate(90deg);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: rotate(90deg);
|
|
|
|
transform: rotate(90deg);
|
2016-11-17 21:13:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + label:hover:after {
|
2017-02-14 04:15:57 +01:00
|
|
|
-webkit-transform: rotate(0);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: rotate(0);
|
|
|
|
transform: rotate(0);
|
2016-11-17 21:06:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2016-11-17 21:38:55 +01:00
|
|
|
padding: 0.25em 0;
|
|
|
|
|
|
|
|
@include breakpoint($large) {
|
|
|
|
padding-top: 0.125em;
|
|
|
|
padding-bottom: 0.125em;
|
|
|
|
}
|
2016-11-17 21:06:07 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2016-03-25 19:50:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-17 22:00:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav__list .nav__items {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2016-03-25 19:50:59 +01:00
|
|
|
|
|
|
|
.active {
|
2016-04-01 03:41:00 +02:00
|
|
|
margin-left: -0.5em;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-11-17 21:43:28 +01:00
|
|
|
|
2016-11-21 15:49:30 +01:00
|
|
|
@include breakpoint(max-width ($large - 1px)) {
|
2016-11-17 21:06:07 +01:00
|
|
|
position: relative;
|
|
|
|
max-height: 0;
|
2016-11-21 22:01:59 +01:00
|
|
|
opacity: 0%;
|
2016-11-17 21:06:07 +01:00
|
|
|
overflow: hidden;
|
|
|
|
z-index: 10;
|
|
|
|
-webkit-transition: 0.3s ease-in-out;
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
-webkit-transform: translate(0, 10%);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: translate(0, 10%);
|
|
|
|
transform: translate(0, 10%);
|
2016-11-17 21:06:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-21 15:49:30 +01:00
|
|
|
@include breakpoint(max-width ($large - 1px)) {
|
2016-11-17 21:06:07 +01:00
|
|
|
.nav__list input:checked ~ .nav__items {
|
|
|
|
-webkit-transition: 0.5s ease-in-out;
|
|
|
|
transition: 0.5s ease-in-out;
|
2017-02-14 04:15:57 +01:00
|
|
|
max-height: 9999px; /* exaggerate max-height to accommodate tall lists*/
|
2016-11-17 21:38:55 +01:00
|
|
|
overflow: visible;
|
2016-11-17 21:06:07 +01:00
|
|
|
opacity: 1;
|
|
|
|
margin-top: 1em;
|
|
|
|
-webkit-transform: translate(0, 0);
|
2017-02-14 18:42:50 +01:00
|
|
|
-ms-transform: translate(0, 0);
|
|
|
|
transform: translate(0, 0);
|
2016-11-17 21:06:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 19:50:59 +01:00
|
|
|
.nav__title {
|
|
|
|
margin: 0;
|
2016-04-06 03:15:39 +02:00
|
|
|
padding: 0.5rem 1rem;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-family: $sans-serif-narrow;
|
2016-03-30 22:59:48 +02:00
|
|
|
font-size: $type-size-5;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__sub-title {
|
|
|
|
display: block;
|
2016-04-06 03:15:39 +02:00
|
|
|
margin: 0.5rem 0;
|
|
|
|
padding: 0.5rem 0;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-family: $sans-serif-narrow;
|
2016-04-01 03:41:00 +02:00
|
|
|
font-size: $type-size-6;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-weight: bold;
|
2016-04-01 03:41:00 +02:00
|
|
|
text-transform: uppercase;
|
2016-03-25 19:50:59 +01:00
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Table of contents navigation
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.toc {
|
|
|
|
font-family: $sans-serif-narrow;
|
|
|
|
color: $gray;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
background-color: #fff;
|
2016-03-29 03:48:42 +02:00
|
|
|
border: 1px solid $border-color;
|
|
|
|
border-radius: $border-radius;
|
2016-04-01 03:41:00 +02:00
|
|
|
box-shadow: $box-shadow;
|
2016-04-01 04:00:06 +02:00
|
|
|
|
|
|
|
.nav__title {
|
|
|
|
color: #fff;
|
|
|
|
font-size: $type-size-6;
|
|
|
|
background: $primary-color;
|
|
|
|
border-top-left-radius: $border-radius;
|
|
|
|
border-top-right-radius: $border-radius;
|
|
|
|
}
|
2016-03-25 19:50:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.toc__menu {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
list-style: none;
|
2016-04-01 04:00:06 +02:00
|
|
|
font-size: 0.8rem;
|
2016-03-25 19:50:59 +01:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2016-04-06 03:15:39 +02:00
|
|
|
padding: 0.5rem 1rem;
|
2016-03-25 19:50:59 +01:00
|
|
|
color: $gray;
|
2016-04-01 04:00:06 +02:00
|
|
|
font-size: $type-size-7;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.5;
|
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: #000;
|
|
|
|
background: $lighter-gray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-01 03:41:00 +02:00
|
|
|
> li:last-child {
|
|
|
|
a {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 19:50:59 +01:00
|
|
|
li ul > li a {
|
2016-04-06 03:15:39 +02:00
|
|
|
padding-left: 2rem;
|
2016-03-25 19:50:59 +01:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2016-08-08 22:01:37 +02:00
|
|
|
/* hide sub sub links on small screens*/
|
2016-03-25 19:50:59 +01:00
|
|
|
li > ul li {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
@include breakpoint($medium) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-07-07 21:11:58 +02:00
|
|
|
}
|