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-01-28 23:27:15 +01: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-01-28 23:27:15 +01:00
|
|
|
|
2016-11-02 19:21:14 +01:00
|
|
|
// Scoped in typesetted content to match specificity of regular content
|
2016-09-23 20:26:27 +02:00
|
|
|
.md-typeset {
|
2016-01-28 23:27:15 +01:00
|
|
|
|
2016-10-06 12:14:33 +02:00
|
|
|
// Permalinks extension
|
2016-08-07 18:01:56 +02:00
|
|
|
.headerlink {
|
|
|
|
display: inline-block;
|
2019-02-12 19:13:08 +01:00
|
|
|
margin-left: px2rem(10px);
|
|
|
|
transform: translate(0, px2rem(5px));
|
2020-03-06 15:21:08 +01:00
|
|
|
// Hack: If we don't set visibility hidden, the text content of the node
|
|
|
|
// will include the headerlink character, which is why Google indexes them.
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
2016-12-24 15:16:21 +01:00
|
|
|
transition:
|
2020-02-17 10:04:12 +01:00
|
|
|
transform 250ms 250ms,
|
|
|
|
color 250ms,
|
2020-02-25 20:25:05 +01:00
|
|
|
opacity 125ms 250ms,
|
|
|
|
visibility 0ms 500ms;
|
2016-10-24 18:02:53 +02:00
|
|
|
|
2018-01-13 16:54:08 +01:00
|
|
|
// Adjust for RTL languages
|
|
|
|
[dir="rtl"] & {
|
2019-02-12 19:13:08 +01:00
|
|
|
margin-right: px2rem(10px);
|
2018-01-13 16:54:08 +01:00
|
|
|
margin-left: initial;
|
|
|
|
}
|
|
|
|
|
2016-12-17 13:00:15 +01:00
|
|
|
// Higher specificity for color due to palettes integration
|
|
|
|
html body & {
|
2020-02-25 20:25:05 +01:00
|
|
|
color: var(--md-default-fg-color--lighter);
|
2016-12-17 13:00:15 +01:00
|
|
|
}
|
|
|
|
|
2016-10-24 18:02:53 +02:00
|
|
|
// Hide for print
|
|
|
|
@media print {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-01-28 23:27:15 +01:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:48:30 +01:00
|
|
|
// Make permalink visible on hover
|
|
|
|
:hover .headerlink,
|
|
|
|
:target .headerlink,
|
|
|
|
.headerlink:focus {
|
|
|
|
transform: translate(0, 0);
|
2020-03-06 15:21:08 +01:00
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
2020-02-24 21:48:30 +01:00
|
|
|
transition:
|
|
|
|
transform 250ms 250ms,
|
|
|
|
color 250ms,
|
2020-02-25 20:25:05 +01:00
|
|
|
opacity 125ms 250ms,
|
|
|
|
visibility 0ms;
|
2020-02-24 21:48:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Active or targeted permalink
|
|
|
|
.headerlink:focus,
|
|
|
|
.headerlink:hover,
|
|
|
|
:target .headerlink {
|
2020-02-25 20:25:05 +01:00
|
|
|
color: var(--md-accent-fg-color);
|
2020-02-24 21:48:30 +01:00
|
|
|
}
|
|
|
|
|
2018-01-20 11:58:46 +01:00
|
|
|
// Correct anchor offset for link blurring
|
2016-09-02 22:59:14 +02:00
|
|
|
@each $level, $delta in (
|
2020-02-24 21:48:30 +01:00
|
|
|
h1 h2 h3: 8px,
|
2019-02-12 19:13:08 +01:00
|
|
|
h4: 9px,
|
2020-02-24 21:48:30 +01:00
|
|
|
h5 h6: 12px,
|
2016-09-02 22:59:14 +02:00
|
|
|
) {
|
2020-02-24 21:48:30 +01:00
|
|
|
%#{nth($level, 1)} {
|
2016-12-27 16:10:06 +01:00
|
|
|
|
2017-05-31 12:25:31 +02:00
|
|
|
// Un-targeted anchor
|
|
|
|
&::before {
|
|
|
|
display: block;
|
2020-02-10 12:34:58 +01:00
|
|
|
margin-top: -1 * px2rem($delta);
|
|
|
|
padding-top: px2rem($delta);
|
2017-05-31 12:25:31 +02:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
2017-12-02 15:26:10 +01:00
|
|
|
// Targeted anchor (48px from header, 12px from sidebar offset)
|
2017-05-31 12:25:31 +02:00
|
|
|
&:target::before {
|
2019-02-12 19:13:08 +01:00
|
|
|
margin-top: -1 * px2rem(48px + 12px + $delta);
|
|
|
|
padding-top: px2rem(48px + 12px + $delta);
|
2017-05-31 12:25:31 +02:00
|
|
|
}
|
2020-02-24 21:48:30 +01:00
|
|
|
}
|
2017-05-31 12:25:31 +02:00
|
|
|
|
2020-02-24 21:48:30 +01:00
|
|
|
// Define levels
|
|
|
|
@for $n from 1 through length($level) {
|
|
|
|
#{nth($level, $n)}[id] {
|
|
|
|
@extend %#{nth($level, 1)};
|
2017-05-31 12:25:31 +02:00
|
|
|
}
|
2016-09-02 22:59:14 +02:00
|
|
|
}
|
|
|
|
}
|
2016-09-04 17:11:58 +02:00
|
|
|
}
|