diff options
author | EuAndreh <eu@euandre.org> | 2025-04-16 11:06:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-16 11:06:59 -0300 |
commit | 973683143a1ba7347fe99cf7ee018064bc890cc8 (patch) | |
tree | 04bfdb855f3e886c67ce1412d76dbba1ac53d3e5 /src/content | |
parent | src/content/style.css: Better positioning for header anchor (diff) | |
download | euandre.org-973683143a1ba7347fe99cf7ee018064bc890cc8.tar.gz euandre.org-973683143a1ba7347fe99cf7ee018064bc890cc8.tar.xz |
src/content/style.css: Show header on hover only
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/content/style.css b/src/content/style.css index 42ab9e4..e3b79b5 100644 --- a/src/content/style.css +++ b/src/content/style.css @@ -163,6 +163,11 @@ a.anchor { background: transparent url(img/link/light.svg) center right no-repeat; padding-right: 22px; margin-left: 10px; + visibility: hidden; +} + +h2:hover a.anchor { + visibility: visible; } |