aboutsummaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authorCaio Lente <7017340+clente@users.noreply.github.com>2023-09-29 19:52:52 -0300
committerGitHub <noreply@github.com>2023-09-29 19:52:52 -0300
commitd14c9c0dec1ee18be9fdf5f21494b944f19de3b8 (patch)
tree78944dcfd2a06312ac4427c561650e3affb7165d /assets/style.css
parent300cf058e1adb42138cfb78010189bc730ce1847 (diff)
parent6f2e7d0c6fe3ef16fa414d75d9647398df857c39 (diff)
downloadhugo-bearcub-d14c9c0dec1ee18be9fdf5f21494b944f19de3b8.tar.gz
hugo-bearcub-d14c9c0dec1ee18be9fdf5f21494b944f19de3b8.tar.bz2
Merge branch 'main' into language-params-fix
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css15
1 files changed, 15 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
index 3b90566..c36c7e1 100644
--- a/assets/style.css
+++ b/assets/style.css
@@ -145,3 +145,18 @@ h3.blog-filter {
cursor: not-allowed;
opacity: 0.7;
}
+
+/* "skip to main content" link */
+.skiplink {
+ position: absolute;
+ top: 5;
+ transform: translateY(-600%);
+ transition: transform 0.5s;
+ background-color: #121212;
+ font-size: larger;
+ padding: 6px;
+}
+
+.skiplink:focus {
+ transform: translateY(0%);
+} \ No newline at end of file