Add markup renderers

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-08 10:53:21 +02:00
parent ccabcf9d5b
commit a7d1faa0a8
7 changed files with 38 additions and 2 deletions

10
assets/sass/heading.scss Normal file
View File

@@ -0,0 +1,10 @@
.heading {
.heading-anchor {
opacity: 0;
transition: opacity 0.2s ease;
}
}
.heading:hover .heading-anchor {
opacity: 1;
}

View File

@@ -6,6 +6,7 @@ $width-max: 60rem;
@import "fonts";
@import "common";
@import "heading";
@import "image";
@import "header";