2016-09-04 18:11:58 +03:00
|
|
|
////
|
2020-02-10 14:34:58 +03:00
|
|
|
/// Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
|
2016-09-04 18:11:58 +03: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-29 01:27:15 +03:00
|
|
|
|
2016-09-04 18:32:12 +03:00
|
|
|
// ----------------------------------------------------------------------------
|
2016-10-06 13:14:33 +03:00
|
|
|
// Rules
|
2016-09-04 18:32:12 +03:00
|
|
|
// ----------------------------------------------------------------------------
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-11-02 21:21:14 +03:00
|
|
|
// Scoped in typesetted content to match specificity of regular content
|
2016-09-23 21:26:27 +03:00
|
|
|
.md-typeset {
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-10-06 13:14:33 +03:00
|
|
|
// Permalinks extension
|
2016-08-07 19:01:56 +03:00
|
|
|
.headerlink {
|
|
|
|
display: inline-block;
|
2019-02-12 21:13:08 +03:00
|
|
|
margin-left: px2rem(10px);
|
|
|
|
transform: translate(0, px2rem(5px));
|
2016-12-24 17:16:21 +03:00
|
|
|
transition:
|
|
|
|
transform 0.25s 0.25s,
|
|
|
|
color 0.25s,
|
|
|
|
opacity 0.125s 0.25s;
|
2016-09-04 18:11:58 +03:00
|
|
|
opacity: 0;
|
2016-10-24 19:02:53 +03:00
|
|
|
|
2018-01-13 18:54:08 +03:00
|
|
|
// Adjust for RTL languages
|
|
|
|
[dir="rtl"] & {
|
2019-02-12 21:13:08 +03:00
|
|
|
margin-right: px2rem(10px);
|
2018-01-13 18:54:08 +03:00
|
|
|
margin-left: initial;
|
|
|
|
}
|
|
|
|
|
2016-12-17 15:00:15 +03:00
|
|
|
// Higher specificity for color due to palettes integration
|
|
|
|
html body & {
|
|
|
|
color: $md-color-black--lighter;
|
|
|
|
}
|
|
|
|
|
2016-10-24 19:02:53 +03:00
|
|
|
// Hide for print
|
|
|
|
@media print {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-01-29 01:27:15 +03:00
|
|
|
}
|
|
|
|
|
2018-01-20 13:58:46 +03:00
|
|
|
// Correct anchor offset for link blurring
|
2016-09-02 23:59:14 +03:00
|
|
|
@each $level, $delta in (
|
2019-10-29 19:48:57 +03:00
|
|
|
h1: 8px,
|
2019-02-12 21:13:08 +03:00
|
|
|
h2: 8px,
|
2019-10-29 19:48:57 +03:00
|
|
|
h3: 8px,
|
2019-02-12 21:13:08 +03:00
|
|
|
h4: 9px,
|
|
|
|
h5: 11px,
|
|
|
|
h6: 11px
|
2016-09-02 23:59:14 +03:00
|
|
|
) {
|
2017-05-31 13:25:31 +03:00
|
|
|
#{$level}[id] {
|
2016-12-27 18:10:06 +03:00
|
|
|
|
2017-05-31 13:25:31 +03:00
|
|
|
// Un-targeted anchor
|
|
|
|
&::before {
|
|
|
|
display: block;
|
2020-02-10 14:34:58 +03:00
|
|
|
margin-top: -1 * px2rem($delta);
|
|
|
|
padding-top: px2rem($delta);
|
2017-05-31 13:25:31 +03:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
2017-12-02 17:26:10 +03:00
|
|
|
// Targeted anchor (48px from header, 12px from sidebar offset)
|
2017-05-31 13:25:31 +03:00
|
|
|
&:target::before {
|
2019-02-12 21:13:08 +03:00
|
|
|
margin-top: -1 * px2rem(48px + 12px + $delta);
|
|
|
|
padding-top: px2rem(48px + 12px + $delta);
|
2017-05-31 13:25:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make permalink visible on hover
|
|
|
|
&:hover .headerlink,
|
|
|
|
&:target .headerlink,
|
|
|
|
& .headerlink:focus {
|
|
|
|
transform: translate(0, 0);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-12-27 18:10:06 +03:00
|
|
|
|
2017-05-31 13:25:31 +03:00
|
|
|
// Active or targeted permalink
|
|
|
|
&:hover .headerlink:hover,
|
|
|
|
&:target .headerlink,
|
|
|
|
& .headerlink:focus {
|
|
|
|
color: $md-color-accent;
|
|
|
|
}
|
2016-09-02 23:59:14 +03:00
|
|
|
}
|
|
|
|
}
|
2016-09-04 18:11:58 +03:00
|
|
|
}
|