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

239 lines
6.6 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
////
2017-03-21 15:27:45 +01:00
// ----------------------------------------------------------------------------
// Variables
// ----------------------------------------------------------------------------
// Active (toggled) drawer
$md-toggle__drawer--checked:
"[data-md-toggle=\"drawer\"]:checked ~";
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
// Rules: base grid and containers
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
2016-09-23 11:56:25 +02:00
// Stretch container to viewport and set base font-size to 10px for simple
2017-05-15 10:44:26 +02:00
// calculations base on relative ems (rems)
2016-08-07 18:01:56 +02:00
html {
2020-02-12 11:21:24 +01:00
height: 100%;
background-color: $md-color-white;
// Hack: normally, we would set the base font-size to 62.5%, so we can base
// all calculations on 10px, but Chromium and Chrome define a minimal font
// size of 12 if the system language is set to Chinese. For this reason we
// just double the font-size, set it to 20px which seems to do the trick.
//
// See https://github.com/squidfunk/mkdocs-material/issues/911
font-size: 125%;
// Hack: some browsers on some operating systems don't account for scroll
// bars when firing media queries, so we need to do this for safety. This
// currently impacts the table of contents component between 1220 and 1234px
// and is to current knowledge not fixable.
overflow-x: hidden;
2016-10-23 19:31:54 +02:00
// [screen medium +]: Set base font-size to 11px
@include break-from-device(screen medium) {
font-size: 137.50%;
}
2016-10-23 19:31:54 +02:00
// [screen large +]: Set base font-size to 12px
@include break-from-device(screen large) {
font-size: 150%;
}
2016-08-07 18:01:56 +02:00
}
2017-05-15 10:44:26 +02:00
// Stretch body to container and leave room for footer
2016-08-07 18:01:56 +02:00
body {
2020-02-12 11:21:24 +01:00
display: flex;
2016-08-07 18:01:56 +02:00
position: relative;
2020-02-12 11:21:24 +01:00
flex-direction: column;
2020-01-25 14:25:50 +01:00
min-height: 100%;
// Hack: reset font-size to 10px, so the spacing for all inline elements is
// correct again. Otherwise the spacing would be based on 20px.
2019-02-12 19:41:13 +01:00
font-size: 0.5rem; // stylelint-disable-line unit-whitelist
2016-10-24 18:02:53 +02:00
// [tablet portrait -]: Lock body to disable scroll bubbling
@include break-to-device(tablet portrait) {
// Lock body to viewport height (e.g. in search mode)
2016-12-15 15:55:40 +01:00
&[data-md-state="lock"] {
2020-02-12 19:13:03 +01:00
height: 100%;
min-height: auto;
2016-10-24 18:02:53 +02:00
overflow: hidden;
2016-12-28 17:13:07 +01:00
// Hide container on iOS, or the body will not be locked correctly
.ios & .md-container {
display: none;
}
2016-10-24 18:02:53 +02:00
}
}
2016-08-07 18:01:56 +02:00
}
2016-09-04 17:32:12 +02:00
// Horizontal separators
2016-08-07 18:01:56 +02:00
hr {
display: block;
height: px2rem(1px);
2016-08-07 18:01:56 +02:00
padding: 0;
border: 0;
}
2016-09-04 17:32:12 +02:00
// Template-wide grid
2016-08-07 18:01:56 +02:00
.md-grid {
max-width: px2rem(1220px);
2016-08-07 18:01:56 +02:00
margin-right: auto;
margin-left: auto;
2016-08-07 18:01:56 +02:00
}
2020-02-12 11:21:24 +01:00
// Content wrapper
.md-container {
2020-02-12 11:21:24 +01:00
display: flex;
flex-direction: column;
flex-grow: 1;
}
// The main content should stretch to maximum height in the table
2016-08-07 18:01:56 +02:00
.md-main {
2020-02-12 11:21:24 +01:00
flex-grow: 1;
2016-08-07 18:01:56 +02:00
// Increase top spacing of content area to give typography more room
2016-08-07 18:01:56 +02:00
&__inner {
2017-10-06 10:53:43 +02:00
height: 100%;
padding-top: px2rem(24px + 6px);
2017-05-15 10:44:26 +02:00
// Hack: induce margin-collapse, because otherwise the sidebar height is
// not calculated correctly and the overflow property on this element must
// be left in initial state for targetted link offsets to work properly
padding-bottom: px2rem(1px);
2016-08-07 18:01:56 +02:00
}
}
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
// Rules: navigational elements
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
2016-08-07 18:01:56 +02:00
2016-09-04 17:32:12 +02:00
// Toggle checkbox
2016-08-07 18:01:56 +02:00
.md-toggle {
display: none;
2016-08-07 18:01:56 +02:00
}
2016-09-04 17:32:12 +02:00
// Overlay below expanded drawer
2016-08-07 18:01:56 +02:00
.md-overlay {
position: fixed;
top: 0;
width: 0;
height: 0;
transition:
width 0s 0.25s,
height 0s 0.25s,
opacity 0.25s;
2016-12-17 12:53:24 +01:00
background-color: $md-color-black--light;
opacity: 0;
z-index: 3;
2016-08-07 18:01:56 +02:00
2016-09-23 11:56:25 +02:00
// [tablet -]: Trigger overlay
@include break-to-device(tablet) {
2016-08-07 18:01:56 +02:00
2016-09-04 17:32:12 +02:00
// Expanded drawer
2017-03-21 15:27:45 +01:00
#{$md-toggle__drawer--checked} & {
2016-08-07 18:01:56 +02:00
width: 100%;
height: 100%;
transition:
width 0s,
height 0s,
opacity 0.25s;
2016-08-07 18:01:56 +02:00
opacity: 1;
}
}
}
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
2020-02-12 11:21:24 +01:00
// Rules: flexible elements
2016-09-04 17:32:12 +02:00
// ----------------------------------------------------------------------------
2016-08-07 18:01:56 +02:00
2016-09-04 17:32:12 +02:00
// Flexible layout container
2016-08-07 18:01:56 +02:00
.md-flex {
2020-02-12 11:21:24 +01:00
display: flex;
2016-08-07 18:01:56 +02:00
2016-09-04 17:32:12 +02:00
// Flexible layout container cell/element
2016-08-07 18:01:56 +02:00
&__cell {
position: relative;
2016-08-07 18:01:56 +02:00
2016-09-04 17:32:12 +02:00
// Shrink to minimum width
2016-08-07 18:01:56 +02:00
&--shrink {
2020-02-12 11:21:24 +01:00
flex-grow: 0;
2016-08-07 18:01:56 +02:00
}
2016-09-04 17:32:12 +02:00
// Stretch to maximum width
2016-08-07 18:01:56 +02:00
&--stretch {
2020-02-12 11:21:24 +01:00
flex-grow: 1;
2016-08-07 18:01:56 +02:00
}
}
2016-09-04 17:32:12 +02:00
// Apply ellipsis in case of overflowing text
2016-08-07 18:01:56 +02:00
&__ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2016-08-07 18:01:56 +02:00
}
}
2016-10-24 18:02:53 +02:00
2018-01-18 21:19:10 +01:00
// ----------------------------------------------------------------------------
// Rules: skip link
// ----------------------------------------------------------------------------
// Skip link
.md-skip {
position: fixed;
width: px2rem(1px);
height: px2rem(1px);
margin: px2rem(10px);
padding: px2rem(6px) px2rem(10px);
transform: translateY(px2rem(8px));
border-radius: px2rem(2px);
2018-01-18 21:19:10 +01:00
background-color: $md-color-black;
color: $md-color-white;
font-size: ms(-1);
opacity: 0;
overflow: hidden;
// Show skip link on focus
&:focus {
width: auto;
height: auto;
clip: auto;
transform: translateX(0);
transition:
transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.175s 0.075s;
opacity: 1;
z-index: 10;
}
}
2016-10-24 18:02:53 +02:00
// ----------------------------------------------------------------------------
// Rules: print styles
// ----------------------------------------------------------------------------
// Add margins to page
@page {
margin: 25mm;
}