From cbd7aa7a309917fe2a27c2047a9c7c415871e6c6 Mon Sep 17 00:00:00 2001 From: Antoine Date: Mon, 12 May 2025 16:49:49 +0200 Subject: [PATCH] STYLE Introducing styles --- resources/css/layout/footer.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/resources/css/layout/footer.css b/resources/css/layout/footer.css index e69de29..f6a5d4c 100644 --- a/resources/css/layout/footer.css +++ b/resources/css/layout/footer.css @@ -0,0 +1,28 @@ +footer { + @apply mx-auto px-12 pt-64; + .branding { + @apply w-full mb-12; + + .website-title { + @apply w-full; + } + } + + .credits { + @apply w-full grid gap-x-24 gap-y-12; + display: grid; + column-gap: 100px; + grid-auto-flow: column; /* clé ici */ + grid-template-rows: repeat(2, auto); + grid-template-columns: repeat(4, 1fr); + + > :first-child { + grid-row: span 2; + } + } + .socials { + a { + @apply block; + } + } +}