mirror of
https://github.com/thomasjsn/hugo-theme-hello-friend.git
synced 2024-11-14 20:35:07 +01:00
commit
303616c5a8
@ -272,3 +272,23 @@ blockquote.twitter-tweet {
|
|||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-anchor {
|
||||||
|
visibility: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
transition: visibility 0s linear 0.1s, opacity 0.1s linear;
|
||||||
|
margin-left: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1:hover a,
|
||||||
|
h2:hover a,
|
||||||
|
h3:hover a,
|
||||||
|
h4:hover a {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
transition-delay: 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.framed .h-anchor {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
4
layouts/_default/_markup/render-heading.html
Normal file
4
layouts/_default/_markup/render-heading.html
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
||||||
|
{{ .Text | safeHTML }}
|
||||||
|
<a href="#{{ .Anchor | safeURL }}" class="h-anchor" aria-hidden="true">#</a>
|
||||||
|
</h{{ .Level }}>
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user