From afebeba99d57247abee53a6857f586ed964edee4 Mon Sep 17 00:00:00 2001 From: 2kool4idkwhat <120322313+2kool4idkwhat@users.noreply.github.com> Date: Wed, 12 Jul 2023 14:17:10 +0200 Subject: a11y: add skipnav link --- assets/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'assets') 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 -- cgit v1.2.3 From 6f981964e0ec959fb34fd365b3e29988cc51e062 Mon Sep 17 00:00:00 2001 From: Caio Lente <7017340+clente@users.noreply.github.com> Date: Fri, 29 Sep 2023 19:57:55 -0300 Subject: Add i18n to skiplink --- .gitignore | 3 ++- assets/style.css | 11 +++++------ i18n/en.toml | 5 ++++- i18n/pt.toml | 5 ++++- layouts/_default/baseof.html | 2 +- layouts/partials/header.html | 2 +- 6 files changed, 17 insertions(+), 11 deletions(-) (limited to 'assets') diff --git a/.gitignore b/.gitignore index 6274ee4..305d231 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .hugo_build.lock .DS_Store -resources/ \ No newline at end of file +resources/ +todo.md \ No newline at end of file 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 +} diff --git a/i18n/en.toml b/i18n/en.toml index 1a89360..b7738dd 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -5,4 +5,7 @@ other = "No posts yet" [email-subject] - other = "Reply to " \ No newline at end of file + other = "Reply to " + +[skip-link] + other = "Skip to main content" \ No newline at end of file diff --git a/i18n/pt.toml b/i18n/pt.toml index a139b0f..33fc65f 100644 --- a/i18n/pt.toml +++ b/i18n/pt.toml @@ -5,4 +5,7 @@ other = "Nenhum post ainda" [email-subject] - other = "Resposta a " \ No newline at end of file + other = "Resposta a " + +[skip-link] + other = "Pular para conteúdo principal" \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 06d71c3..fdfa47c 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -36,7 +36,7 @@
{{- partial "header.html" . -}}
-
+
{{- block "main" . }}{{- end }}