1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2025-01-12 06:02:13 +01:00
Benjamin Staneck ca50ed8200
Refactored CSS to use CSS Variables (#1409)
* First stab at using CSS variables

* Port color-black to CSS variables and fix SCSS compile

* add hex2rgb helper function

* Port md-color-white to CSS variables

* Port code color and background

* Fix a rebase mistake

* Fix lint

* adopt upstream changes

Co-authored-by: Martin Donath <squidfunk@users.noreply.github.com>
2020-02-25 15:04:58 +01:00

214 lines
4.9 KiB
SCSS

////
/// 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
////
// ----------------------------------------------------------------------------
// Rules
// ----------------------------------------------------------------------------
// Application footer
.md-footer {
// Hide for print
@media print {
display: none;
}
}
// Navigation within footer
.md-footer-nav {
background-color: var(--md-color-text);
color: var(--md-color-background);
// Set spacing
&__inner {
padding: px2rem(4px);
overflow: auto;
}
// Links to previous and next page
&__link {
display: flex;
padding-top: px2rem(28px);
padding-bottom: px2rem(8px);
transition: opacity 250ms;
// [tablet +]: Set proportional width
@include break-from-device(tablet) {
width: 50%;
}
// Focused or hovered links
&:focus,
&:hover {
opacity: 0.7;
}
// Link to previous page
&--prev {
width: 25%;
float: left;
// Adjust for right-to-left languages
[dir="rtl"] & {
float: right;
// Flip icon vertically
svg {
transform: scaleX(-1);
}
}
// Title
.md-footer-nav__title {
// [mobile -]: Hide title for previous page
@include break-to-device(mobile) {
display: none;
}
}
}
// Link to next page
&--next {
width: 75%;
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);
}
}
}
}
// Link title - set line height to match icon for correct alignment
&__title {
position: relative;
flex-grow: 1;
max-width: calc(100% - #{px2rem(48px)});
padding: 0 px2rem(20px);
font-size: px2rem(18px);
line-height: px2rem(48px);
}
// Link direction
&__direction {
position: absolute;
right: 0;
left: 0;
margin-top: px2rem(-20px);
padding: 0 px2rem(20px);
color: var(--md-color-background--light);
font-size: px2rem(15px);
}
}
// Non-navigational information
.md-footer-meta {
background-color: rgba(var(--md-color-text-values), 1.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: var(--md-color-background--light);
// Focused or hovered link
&:focus,
&:hover {
color: var(--md-color-background);
}
}
}
// Copyright and theme information
.md-footer-copyright {
margin: 0 px2rem(12px);
padding: px2rem(8px) 0;
color: var(--md-color-background--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 right-to-left languages
[dir="rtl"] & {
float: right;
}
}
// Highlight copyright information
&__highlight {
color: var(--md-color-background--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 right-to-left languages
[dir="rtl"] & {
float: left;
}
}
// Link with icon
&__link {
display: inline-block;
width: px2rem(32px);
height: px2rem(32px);
transition: color 250ms;
text-align: center;
// Adjust line-height to match height for correct alignment
&::before {
line-height: 1.9;
}
// Social icon
svg {
width: px2rem(16px);
vertical-align: -25%;
fill: currentColor;
}
}
}