From 8d8a08f6cd7c602012d69cdab35890b181a86025 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 28 Nov 2023 10:02:59 +0100 Subject: [PATCH] Inserting credits --- footer.php | 11 ++++++++++- resources/css/layout/footer.css | 21 +++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/footer.php b/footer.php index c589306..3511029 100644 --- a/footer.php +++ b/footer.php @@ -113,8 +113,17 @@ -
+
© - +

Made with + + + + + + + by Deligraph +

diff --git a/resources/css/layout/footer.css b/resources/css/layout/footer.css index 6f7dc2e..0d67321 100644 --- a/resources/css/layout/footer.css +++ b/resources/css/layout/footer.css @@ -48,4 +48,25 @@ &__metiers-patrimoine { @apply col-span-4 md:col-span-2; } + .website-credits { + @apply text-center col-span-4; + } + .seventeen { + } + + .made-by { + @apply flex justify-center items-center text-neutral-600 font-semibold text-xs pt-2; + svg { + @apply w-3 h-3 mx-1 fill-secondary; + animation: fade-in-out 2.5s linear infinite; + } + a { + @apply underline pl-1; + } + @keyframes fade-in-out { + 50% { + opacity: 0; + } + } + } }