diff options
author | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-10-17 00:06:07 -0300 |
---|---|---|
committer | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-10-17 00:06:07 -0300 |
commit | d796205bf80157a95fe92cb2a4d11b785fd6359f (patch) | |
tree | 801226dd4d375da3d98e91f0b7b6329166fe8910 /assets | |
parent | f991890cc202aac9d00578c9fa3d6004e9f9ece0 (diff) | |
parent | cfb20f68513fda3a72f49c43da6fa84190855d25 (diff) | |
download | hugo-bearcub-d796205bf80157a95fe92cb2a4d11b785fd6359f.tar.gz hugo-bearcub-d796205bf80157a95fe92cb2a4d11b785fd6359f.tar.bz2 |
Merge origin/main into style/herman
Diffstat (limited to 'assets')
-rw-r--r-- | assets/herman.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/assets/herman.css b/assets/herman.css index a61d6c9..cd84aec 100644 --- a/assets/herman.css +++ b/assets/herman.css @@ -176,3 +176,17 @@ td { gap: calc(var(--spacing) / 2); } } + +/* "Skip to main content" link */ +.skip-link { + position: absolute; + top: 5; + transform: translateY(-600%); + transition: transform 0.5s; + background-color: #181a20; + padding: 6px; +} + +.skip-link:focus { + transform: translateY(0%); +} |