1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2025-01-12 06:02:13 +01:00

214 lines
4.9 KiB
SCSS
Raw Normal View History

////
/// Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
///
/// 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
// ----------------------------------------------------------------------------
// 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 {
color: var(--md-footer-fg-color);
background-color: var(--md-footer-bg-color);
2016-08-07 18:01:56 +02:00
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 {
// Set spacing
&__inner {
padding: px2rem(4px);
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 {
display: flex;
padding-top: px2rem(28px);
padding-bottom: px2rem(8px);
transition: opacity 250ms;
2016-08-07 18:01:56 +02: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
// 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 {
float: left;
2016-08-07 18:01:56 +02:00
// Adjust for right-to-left languages
[dir="rtl"] & {
float: right;
// Flip icon vertically
svg {
transform: scaleX(-1);
}
}
// [mobile -]: Hide title for previous page
@include break-to-device(mobile) {
width: 25%;
2016-08-07 18:01:56 +02:00
// Title
.md-footer-nav__title {
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 {
float: right;
text-align: right;
// Adjust for right-to-left languages
[dir="rtl"] & {
float: left;
text-align: left;
// Flip icon vertically
svg {
transform: scaleX(-1);
}
}
// [mobile -]: Hide title for previous page
@include break-to-device(mobile) {
width: 75%;
}
2016-08-07 18:01:56 +02:00
}
2016-09-13 20:58:28 +02:00
}
2016-08-07 18:01:56 +02:00
// Link title - set line height to match icon for correct alignment
2016-09-13 20:58:28 +02:00
&__title {
position: relative;
flex-grow: 1;
max-width: calc(100% - #{px2rem(48px)});
padding: 0 px2rem(20px);
font-size: px2rem(18px);
line-height: px2rem(48px);
2016-09-13 20:58:28 +02:00
}
2020-02-27 11:37:02 +01:00
// Link button
&__button {
margin: px2rem(4px);
padding: px2rem(8px);
}
2016-09-13 20:58:28 +02:00
// Link direction
&__direction {
position: absolute;
right: 0;
left: 0;
margin-top: px2rem(-20px);
padding: 0 px2rem(20px);
font-size: ms(-1);
opacity: 0.7;
2016-08-07 18:01:56 +02:00
}
}
// Non-navigational information
.md-footer-meta {
background-color: var(--md-footer-bg-color--dark);
// Set spacing
&__inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: px2rem(4px);
}
// Use a decent color for non-hovered links and ensure specificity
html &.md-typeset a {
color: var(--md-footer-fg-color--light);
// Focused or hovered link
&:focus,
&:hover {
color: var(--md-footer-fg-color);
}
}
}
// Copyright and theme information
.md-footer-copyright {
width: 100%;
margin: auto px2rem(12px);
padding: px2rem(8px) 0;
color: var(--md-footer-fg-color--lighter);
font-size: ms(-1);
// [tablet portrait +]: Show next to social media links
@include break-from-device(tablet portrait) {
width: auto;
}
// Highlight copyright information
&__highlight {
color: var(--md-footer-fg-color--light);
}
}
// Social links
.md-footer-social {
margin: 0 px2rem(8px);
padding: px2rem(4px) 0 px2rem(12px);
// [tablet portrait +]: Show next to copyright information
@include break-from-device(tablet portrait) {
padding: px2rem(12px) 0;
}
// Link with icon
&__link {
display: inline-block;
width: px2rem(32px);
height: px2rem(32px);
text-align: center;
// Adjust line-height to match height for correct alignment
&::before {
line-height: 1.9;
}
// Social icon
svg {
2020-03-09 21:14:47 +01:00
max-height: px2rem(16px);
vertical-align: -25%;
fill: currentColor;
}
}
}