2016-09-04 17:11:58 +02:00
|
|
|
////
|
2020-02-10 12:34:58 +01:00
|
|
|
/// Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
|
2016-09-04 17:11:58 +02:00
|
|
|
///
|
|
|
|
/// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
/// copy of this software and associated documentation files (the "Software"),
|
|
|
|
/// to deal in the Software without restriction, including without limitation
|
|
|
|
/// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
/// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
/// Software is furnished to do so, subject to the following conditions:
|
|
|
|
///
|
|
|
|
/// The above copyright notice and this permission notice shall be included in
|
|
|
|
/// all copies or substantial portions of the Software.
|
|
|
|
///
|
|
|
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
/// DEALINGS
|
|
|
|
////
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2016-09-04 17:32:12 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
2016-10-06 12:14:33 +02:00
|
|
|
// Rules
|
2016-09-04 17:32:12 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2016-09-04 17:32:12 +02:00
|
|
|
// Application footer
|
2016-08-07 18:01:56 +02:00
|
|
|
.md-footer {
|
|
|
|
|
2016-10-24 18:02:53 +02:00
|
|
|
// Hide for print
|
|
|
|
@media print {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-09-13 20:58:28 +02:00
|
|
|
}
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2016-10-23 19:31:54 +02:00
|
|
|
// Navigation within footer
|
2016-09-13 20:58:28 +02:00
|
|
|
.md-footer-nav {
|
2020-02-25 15:04:58 +01:00
|
|
|
background-color: var(--md-color-text);
|
|
|
|
color: var(--md-color-background);
|
2016-12-26 18:26:34 +01:00
|
|
|
|
|
|
|
// Set spacing
|
|
|
|
&__inner {
|
2019-02-12 19:13:08 +01:00
|
|
|
padding: px2rem(4px);
|
2016-12-26 18:26:34 +01:00
|
|
|
overflow: auto;
|
|
|
|
}
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2016-09-13 20:58:28 +02:00
|
|
|
// Links to previous and next page
|
|
|
|
&__link {
|
2020-02-24 18:07:50 +01:00
|
|
|
display: flex;
|
2019-02-12 19:13:08 +01:00
|
|
|
padding-top: px2rem(28px);
|
|
|
|
padding-bottom: px2rem(8px);
|
2020-02-17 10:04:12 +01:00
|
|
|
transition: opacity 250ms;
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2017-01-18 23:23:45 +01:00
|
|
|
// [tablet +]: Set proportional width
|
|
|
|
@include break-from-device(tablet) {
|
2016-09-13 20:58:28 +02:00
|
|
|
width: 50%;
|
|
|
|
}
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2020-02-24 18:07:50 +01:00
|
|
|
// Focused or hovered links
|
|
|
|
&:focus,
|
2016-09-13 20:58:28 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2016-09-08 19:43:23 +02:00
|
|
|
|
2016-09-13 20:58:28 +02:00
|
|
|
// Link to previous page
|
|
|
|
&--prev {
|
|
|
|
width: 25%;
|
|
|
|
float: left;
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2020-02-24 18:07:50 +01:00
|
|
|
// Adjust for right-to-left languages
|
2018-01-13 16:54:08 +01:00
|
|
|
[dir="rtl"] & {
|
|
|
|
float: right;
|
2020-02-24 18:07:50 +01:00
|
|
|
|
|
|
|
// Flip icon vertically
|
|
|
|
svg {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
2018-01-13 16:54:08 +01:00
|
|
|
}
|
|
|
|
|
2016-09-13 20:58:28 +02:00
|
|
|
// Title
|
|
|
|
.md-footer-nav__title {
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2017-01-18 23:23:45 +01:00
|
|
|
// [mobile -]: Hide title for previous page
|
|
|
|
@include break-to-device(mobile) {
|
2016-09-13 20:58:28 +02:00
|
|
|
display: none;
|
2016-08-07 18:01:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-13 20:58:28 +02:00
|
|
|
// Link to next page
|
|
|
|
&--next {
|
|
|
|
width: 75%;
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
2018-01-13 16:54:08 +01:00
|
|
|
|
2020-02-24 18:07:50 +01:00
|
|
|
// Adjust for right-to-left languages
|
2018-01-13 16:54:08 +01:00
|
|
|
[dir="rtl"] & {
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
2020-02-24 18:07:50 +01:00
|
|
|
|
|
|
|
// Flip icon vertically
|
|
|
|
svg {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
2018-01-13 16:54:08 +01:00
|
|
|
}
|
2016-08-07 18:01:56 +02:00
|
|
|
}
|
2016-09-13 20:58:28 +02:00
|
|
|
}
|
2016-08-07 18:01:56 +02:00
|
|
|
|
2016-12-28 11:49:57 +01:00
|
|
|
// Link title - set line height to match icon for correct alignment
|
2016-09-13 20:58:28 +02:00
|
|
|
&__title {
|
|
|
|
position: relative;
|
2020-02-24 18:07:50 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
max-width: calc(100% - #{px2rem(48px)});
|
2019-02-12 19:13:08 +01:00
|
|
|
padding: 0 px2rem(20px);
|
|
|
|
font-size: px2rem(18px);
|
|
|
|
line-height: px2rem(48px);
|
2016-09-13 20:58:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Link direction
|
|
|
|
&__direction {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2019-02-12 19:13:08 +01:00
|
|
|
margin-top: px2rem(-20px);
|
|
|
|
padding: 0 px2rem(20px);
|
2020-02-25 15:04:58 +01:00
|
|
|
color: var(--md-color-background--light);
|
2019-02-12 19:13:08 +01:00
|
|
|
font-size: px2rem(15px);
|
2016-08-07 18:01:56 +02:00
|
|
|
}
|
2016-09-04 17:11:58 +02:00
|
|
|
}
|
2016-12-26 18:26:34 +01:00
|
|
|
|
|
|
|
// Non-navigational information
|
|
|
|
.md-footer-meta {
|
2020-02-25 15:04:58 +01:00
|
|
|
background-color: rgba(var(--md-color-text-values), 1.025);
|
2016-12-26 18:26:34 +01:00
|
|
|
|
|
|
|
// Set spacing
|
|
|
|
&__inner {
|
2019-02-12 19:13:08 +01:00
|
|
|
padding: px2rem(4px);
|
2016-12-26 18:26:34 +01:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use a decent color for non-hovered links and ensure specificity
|
|
|
|
html &.md-typeset a {
|
2020-02-25 15:04:58 +01:00
|
|
|
color: var(--md-color-background--light);
|
2017-11-05 14:54:00 +01:00
|
|
|
|
|
|
|
// Focused or hovered link
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2020-02-25 15:04:58 +01:00
|
|
|
color: var(--md-color-background);
|
2017-11-05 14:54:00 +01:00
|
|
|
}
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copyright and theme information
|
|
|
|
.md-footer-copyright {
|
2019-02-12 19:13:08 +01:00
|
|
|
margin: 0 px2rem(12px);
|
|
|
|
padding: px2rem(8px) 0;
|
2020-02-25 15:04:58 +01:00
|
|
|
color: var(--md-color-background--lighter);
|
2016-12-26 18:26:34 +01:00
|
|
|
font-size: ms(-1);
|
|
|
|
|
|
|
|
// [tablet portrait +]: Show next to social media links
|
|
|
|
@include break-from-device(tablet portrait) {
|
|
|
|
max-width: 75%;
|
|
|
|
float: left;
|
2018-01-13 16:54:08 +01:00
|
|
|
|
2020-02-24 18:07:50 +01:00
|
|
|
// Adjust for right-to-left languages
|
2018-01-13 16:54:08 +01:00
|
|
|
[dir="rtl"] & {
|
|
|
|
float: right;
|
|
|
|
}
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Highlight copyright information
|
|
|
|
&__highlight {
|
2020-02-25 15:04:58 +01:00
|
|
|
color: var(--md-color-background--light);
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Social media links
|
|
|
|
.md-footer-social {
|
2019-02-12 19:13:08 +01:00
|
|
|
margin: 0 px2rem(8px);
|
|
|
|
padding: px2rem(4px) 0 px2rem(12px);
|
2016-12-26 18:26:34 +01:00
|
|
|
|
|
|
|
// [tablet portrait +]: Show next to copyright information
|
|
|
|
@include break-from-device(tablet portrait) {
|
2019-02-12 19:13:08 +01:00
|
|
|
padding: px2rem(12px) 0;
|
2016-12-26 18:26:34 +01:00
|
|
|
float: right;
|
2018-01-13 16:54:08 +01:00
|
|
|
|
2020-02-24 18:07:50 +01:00
|
|
|
// Adjust for right-to-left languages
|
2018-01-13 16:54:08 +01:00
|
|
|
[dir="rtl"] & {
|
|
|
|
float: left;
|
|
|
|
}
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Link with icon
|
|
|
|
&__link {
|
|
|
|
display: inline-block;
|
2019-02-12 19:13:08 +01:00
|
|
|
width: px2rem(32px);
|
|
|
|
height: px2rem(32px);
|
2020-02-24 18:07:50 +01:00
|
|
|
transition: color 250ms;
|
2016-12-26 18:26:34 +01:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
// Adjust line-height to match height for correct alignment
|
|
|
|
&::before {
|
2017-01-04 20:16:12 +01:00
|
|
|
line-height: 1.9;
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
2019-12-22 18:21:19 +01:00
|
|
|
|
|
|
|
// Social icon
|
|
|
|
svg {
|
|
|
|
width: px2rem(16px);
|
|
|
|
vertical-align: -25%;
|
2020-02-24 18:07:50 +01:00
|
|
|
fill: currentColor;
|
2019-12-22 18:21:19 +01:00
|
|
|
}
|
2016-12-26 18:26:34 +01:00
|
|
|
}
|
|
|
|
}
|