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-11 21:54:16 +01:00
|
|
|
margin-bottom: 1em;
|
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-03-10 19:06:59 +01:00
|
|
|
ol {
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2016-03-15 17:34:14 +01:00
|
|
|
font-size: 14px;
|
|
|
|
@include breakpoint($medium) {
|
|
|
|
@include span(10 of 12);
|
|
|
|
@include pre(2);
|
|
|
|
}
|
2016-03-10 19:06:59 +01:00
|
|
|
}
|
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.current {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Post pagination navigation links
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
padding-top: 0.5em;
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
li + li:before {
|
|
|
|
content: "";
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.current {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|