mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed offsets of targetted headlines
This commit is contained in:
parent
c3231f1a9e
commit
758ae36c92
File diff suppressed because one or more lines are too long
@ -45,7 +45,7 @@
|
|||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block styles %}
|
{% block styles %}
|
||||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-f1dc02faf5.css">
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-bc099a55ca.css">
|
||||||
{% if config.extra.palette %}
|
{% if config.extra.palette %}
|
||||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -80,18 +80,23 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Correct headline offset with padding due to margin layering
|
||||||
|
h1[id] {
|
||||||
|
padding-top: 0.8rem;
|
||||||
|
|
||||||
// Hide anchor for top-level heading, as it makes no sense
|
// Hide anchor for top-level heading, as it makes no sense
|
||||||
h1[id] .headerlink {
|
&.headerlink {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Correct anchor offset for link blurring
|
// Correct anchor offset for link blurring
|
||||||
@each $level, $delta in (
|
@each $level, $delta in (
|
||||||
h2: 0.2rem,
|
h2: 0.4rem,
|
||||||
h3: 0.4rem,
|
h3: 0.7rem,
|
||||||
h4: 0.6rem,
|
h4: 0.8rem,
|
||||||
h5: 1rem,
|
h5: 1.1rem,
|
||||||
h6: 1rem
|
h6: 1.1rem
|
||||||
) {
|
) {
|
||||||
|
|
||||||
// Un-targeted anchor
|
// Un-targeted anchor
|
||||||
|
Loading…
Reference in New Issue
Block a user