diff options
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%); +} |