diff --git a/Views/errors/400.php b/Views/errors/400.php index e0a2f94..d1b296d 100644 --- a/Views/errors/400.php +++ b/Views/errors/400.php @@ -6,5 +6,5 @@ echo '

Message d\'erreur : ' . $A_view . '

'; } ?> - Retourner à l'accueil + ↩︎ Retourner à l'accueil diff --git a/Views/errors/403.php b/Views/errors/403.php index cf152fa..dab9a02 100644 --- a/Views/errors/403.php +++ b/Views/errors/403.php @@ -1,5 +1,5 @@

Erreur 403

Vous n'avez pas l'autorisation d'accéder à cette page 😥

- Retourner à l'accueil + ↩︎ Retourner à l'accueil
diff --git a/Views/errors/404.php b/Views/errors/404.php index a558ef9..13b311a 100644 --- a/Views/errors/404.php +++ b/Views/errors/404.php @@ -1,5 +1,5 @@

Erreur 404

La page n'a pas été trouvée 😥

- Retourner à l'accueil + ↩︎ Retourner à l'accueil
diff --git a/Views/errors/500.php b/Views/errors/500.php index ddf95e9..c594f49 100644 --- a/Views/errors/500.php +++ b/Views/errors/500.php @@ -6,5 +6,5 @@ echo '

Message d\'erreur : ' . $A_view .'

'; } ?> - Retourner à l'accueil + ↩︎ Retourner à l'accueil diff --git a/static/style.css b/static/style.css index 8c52074..e1340a2 100644 --- a/static/style.css +++ b/static/style.css @@ -432,14 +432,25 @@ main.editRecipe > form > input[type=submit] { footer { display: flex; flex-direction: column; - gap: var(--size-max); + gap: var(--size-xl); justify-content: center; align-items: center; height: 200px; - width: 100vw; + width: calc(100vw - 2* var(--size-max)); background: var(--grey-dark); color: var(--secondary-pastel); font-size: var(--size-xl); + padding: var(--size-max); + padding-top: var(--size-xl); + padding-bottom: var(--size-xl); + text-align: center; +} +footer > h1 { + font-size: var(--size-xl); + +} +footer > p { + font-size: var(--size-l); } main.errorPage { @@ -450,3 +461,17 @@ main.errorPage { flex-wrap: wrap; justify-content: center; } +main.errorPage > h1 { + color: var(--principal-neutral); + font-size: var(--size-max); + font-weight: 800; +} +main.errorPage > h2 { + font-size: var(--size-xl); +} +main.errorPage > a { + color: black; + font-size: var(--size-l); + text-decoration: none; + margin-top: var(--size-m); +}