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

220 lines
4.8 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 {
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 {
background-color: $md-color-black;
color: $md-color-white;
// Icons
svg {
display: block;
fill: currentColor;
}
// 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 {
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
2016-09-13 20:58:28 +02:00
// Hovered link
&: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
// Adjust for RTL languages
[dir="rtl"] & {
float: right;
}
2016-09-13 20:58:28 +02:00
// Title
.md-footer-nav__title {
2016-08-07 18:01:56 +02: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;
// Adjust for RTL languages
[dir="rtl"] & {
float: left;
text-align: left;
}
2016-08-07 18:01:56 +02:00
}
2016-09-13 20:58:28 +02:00
}
2016-08-07 18:01:56 +02:00
2017-01-14 20:13:10 +01:00
// Icon buttons
&__button {
2016-09-23 11:56:25 +02:00
@extend %md-icon__button;
transition: background 250ms;
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;
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;
margin-top: px2rem(-20px);
padding: 0 px2rem(20px);
2016-09-13 20:58:28 +02:00
color: $md-color-white--light;
font-size: px2rem(15px);
2016-08-07 18:01:56 +02:00
}
}
// Non-navigational information
.md-footer-meta {
background-color: opacify($md-color-black, 0.025);
// Set spacing
&__inner {
padding: px2rem(4px);
overflow: auto;
}
// Use a decent color for non-hovered links and ensure specificity
html &.md-typeset a {
color: $md-color-white--light;
// Focused or hovered link
&:focus,
&:hover {
color: $md-color-white;
}
}
}
// Copyright and theme information
.md-footer-copyright {
margin: 0 px2rem(12px);
padding: px2rem(8px) 0;
color: $md-color-white--lighter;
font-size: ms(-1);
// [tablet portrait +]: Show next to social media links
@include break-from-device(tablet portrait) {
max-width: 75%;
float: left;
// Adjust for RTL languages
[dir="rtl"] & {
float: right;
}
}
// Highlight copyright information
&__highlight {
color: $md-color-white--light;
}
}
// Social media 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;
float: right;
// Adjust for RTL languages
[dir="rtl"] & {
float: left;
}
}
// Link with icon
&__link {
display: inline-block;
width: px2rem(32px);
height: px2rem(32px);
font-size: px2rem(16px);
text-align: center;
// Adjust line-height to match height for correct alignment
&::before {
line-height: 1.9;
}
// Social icon
svg {
width: px2rem(16px);
transition: fill 250ms;
vertical-align: -25%;
fill: $md-color-white--light;
}
// Focused or hovered link
&:focus svg,
&:hover svg {
fill: $md-color-white;
}
}
}