diff --git a/assets/images/logo.svg b/assets/images/logo.svg index cf68b191..f8d99baf 100644 --- a/assets/images/logo.svg +++ b/assets/images/logo.svg @@ -1,15 +1,20 @@ - - Group 11 - - - - - - - - - + + finales Logo + diff --git a/assets/sass/headings.scss b/assets/sass/headings.scss index 473a6464..d8eff7c1 100644 --- a/assets/sass/headings.scss +++ b/assets/sass/headings.scss @@ -1,16 +1,16 @@ h1 { - font-size: 3.6rem; + font-size: 3rem; line-height: 1.25; - font-weight: 700; margin-bottom: 2rem; + font-weight: 700; text-wrap: balance; scroll-margin-top: 7rem; } h2 { - font-size: 2.4rem; + font-size: 2.2rem; line-height: 1.25; - margin-bottom: 1.2rem; + margin-bottom: 1rem; font-weight: 700; text-wrap: balance; scroll-margin-top: 7rem; diff --git a/assets/sass/navigation.scss b/assets/sass/navigation.scss index 1efa8102..8bbae661 100644 --- a/assets/sass/navigation.scss +++ b/assets/sass/navigation.scss @@ -54,28 +54,19 @@ .o-header__logo { display: flex; - margin: .3rem; + margin: .6rem; position: relative; text-decoration: none; + border-radius: var(--border-radius-m); - h1 { - margin: 0; - font-size: 2.4rem; - color: var(--link-special); - font-weight: 700; - align-self: center; - text-wrap-mode: nowrap; - - &:hover, - &:focus { - color: var(--link-hovered); - text-decoration: underline; - } + &:hover, + &:focus { + background-color: var(--bg-neutral); } img { - width: 5rem; height: 4.7rem; + padding: 0 .4rem } } @@ -91,7 +82,7 @@ left: 50%; transform: translateX(-50%); padding: 1rem; - margin: .3rem; + margin: .6rem; pointer-events: none; background-color: var(--bg-neutral); border-radius: var(--border-radius-s); @@ -119,7 +110,7 @@ .o-nav__close-button { display: inline-flex; padding: 1rem; - margin: .3rem; + margin: .6rem; border: none; background: none; width: fit-content; diff --git a/assets/sass/styles.scss b/assets/sass/styles.scss index d48ccdd3..8bcda27e 100644 --- a/assets/sass/styles.scss +++ b/assets/sass/styles.scss @@ -175,7 +175,7 @@ img { margin-bottom: 1.6rem; align-items: center; - h2 { + h1 { margin-bottom: 0; } } @@ -186,10 +186,6 @@ img { gap: 1.5rem; } -.o-single__content-header-title h1 { - margin-bottom: 0; -} - .o-single__content-header-title img { max-height: 3.6rem; width: auto; @@ -205,6 +201,11 @@ img { padding: 0px; } +.sr-only { + opacity: 0; + position: absolute; +} + .a-flag { height: 2rem; width: auto; diff --git a/content/_index.de.md b/content/_index.de.md index c2123961..08440089 100644 --- a/content/_index.de.md +++ b/content/_index.de.md @@ -11,6 +11,6 @@ In diesem Projekt sind Informationen und Nutzungshinweise zu FIP sowie Besonderh * [Grundlegende Informationen zu FIP]({{< ref "generalinformation" >}}) * [Übersicht der Länder]({{< ref "country" >}}) -### Unterstütze uns +## Unterstütze uns Du möchtest dein Wissen rund um FIP-Regelungen teilen? Schau auf unserem [GitHub Repository](https://github.com/fipguide/fipguide.github.io) vorbei, um Inhalte beizutragen. Alternativ kannst du uns auch über das [Kontaktformular]({{< ref "contact" >}}) schreiben. diff --git a/content/_index.en.md b/content/_index.en.md index c3633e16..98db5c10 100644 --- a/content/_index.en.md +++ b/content/_index.en.md @@ -11,6 +11,6 @@ This project includes information and usage instructions for FIP as well as spec * [Basic information about FIP]({{< ref "generalinformation" >}}) * [Overview of countries]({{< ref "country" >}}) -### Support Us +## Support Us Would you like to share your knowledge about FIP regulations? Visit our [GitHub Repository](https://github.com/fipguide/fipguide.github.io) to contribute content. Alternatively, you can also write to us via the [contact form]({{< ref "contact" >}}). diff --git a/i18n/de.yaml b/i18n/de.yaml index 51490ea5..5d92c11a 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -36,4 +36,5 @@ anchorLink: copied: Link wurde in die Zwischenablage kopiert skipToContent: Zum Inhalt springen wip: An dieser Seite wird noch gearbeitet und Inhalte können unvollständig sein. Wir freuen uns, wenn du zur Verbesserung dieser Seite beträgst. [Mehr Information auf GitHub](https://github.com/fipguide/fipguide.github.io/wiki/Deutsch). +home-page-text: FIP Guide Startseite navigate-to-country: Gehe zu Land diff --git a/i18n/en.yaml b/i18n/en.yaml index ac559389..a4ba73af 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -32,4 +32,5 @@ anchorLink: copied: Link has been copied to the clipboard skipToContent: Skip to content wip: This page is still under construction and content may be incomplete. We would be happy if you contribute to improve this page. [More information on GitHub](https://github.com/fipguide/fipguide.github.io/wiki/English). +home-page-text: FIP Guide Home Page navigate-to-country: Navigate to country diff --git a/layouts/_default/home.html b/layouts/_default/home.html index 3a37d3b2..7430a030 100644 --- a/layouts/_default/home.html +++ b/layouts/_default/home.html @@ -1,4 +1,5 @@ {{ define "main" }} +

{{ T "home-page-text" }}

{{ partial "stage.html" }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index cdb00371..b74dd68a 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,7 +1,7 @@ {{ define "main" }}
-

{{ .Title }}

+

{{ .Title }}

{{ .Content }} {{ range .Pages }} {{ partial "teaser.html" (dict "listview" "true" "page" .) }} {{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 8132aa04..8aef10d6 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,7 +1,7 @@ {{ define "main" }}
-

{{ .Title }}

+

{{ .Title }}