diff options
author | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-09-29 19:57:55 -0300 |
---|---|---|
committer | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-09-29 19:57:55 -0300 |
commit | 6f981964e0ec959fb34fd365b3e29988cc51e062 (patch) | |
tree | e93f15abd482cde390ca18742486c176d940c826 /assets | |
parent | 64583d8a0a1ad7c76d49e93922c75b6de3dc5133 (diff) | |
download | hugo-bearcub-6f981964e0ec959fb34fd365b3e29988cc51e062.tar.gz hugo-bearcub-6f981964e0ec959fb34fd365b3e29988cc51e062.tar.bz2 |
Add i18n to skiplink
Diffstat (limited to 'assets')
-rw-r--r-- | assets/style.css | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/assets/style.css b/assets/style.css index c36c7e1..afa00b3 100644 --- a/assets/style.css +++ b/assets/style.css @@ -146,17 +146,16 @@ h3.blog-filter { opacity: 0.7; } -/* "skip to main content" link */ -.skiplink { +/* "Skip to main content" link */ +.skip-link { position: absolute; top: 5; transform: translateY(-600%); transition: transform 0.5s; - background-color: #121212; - font-size: larger; + background-color: #1d1f27; padding: 6px; } -.skiplink:focus { +.skip-link:focus { transform: translateY(0%); -}
\ No newline at end of file +} |