From 307bef8c56bac5d8e21c1a51062ad03bec9d5a72 Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Thu, 28 Jul 2022 15:04:35 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20change=20les=20couleurs=20amber=20?= =?UTF-8?q?=C3=A0=20slate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/_includes/footer.njk | 2 +- src/actualites.njk | 4 ++-- src/index.njk | 4 ++-- src/style/base.css | 4 ++-- src/style/global.pcss | 2 +- src/style/header.pcss | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/_includes/footer.njk b/src/_includes/footer.njk index 2e0bc3c..25afd8f 100644 --- a/src/_includes/footer.njk +++ b/src/_includes/footer.njk @@ -1 +1 @@ - + diff --git a/src/actualites.njk b/src/actualites.njk index be4bd2e..998a7ac 100644 --- a/src/actualites.njk +++ b/src/actualites.njk @@ -12,11 +12,11 @@ eleventyNavigation: {% for actualite in liste %}
  • -
  • diff --git a/src/index.njk b/src/index.njk index 5268dc1..b37bada 100644 --- a/src/index.njk +++ b/src/index.njk @@ -37,8 +37,8 @@ Dans les médias et sur les réseaux, on parle de no {% for actualite in liste %}
  • -
    - +
    +
    {{ actualite.data.title }} diff --git a/src/style/base.css b/src/style/base.css index f398032..cd215d2 100644 --- a/src/style/base.css +++ b/src/style/base.css @@ -6,10 +6,10 @@ @apply text-4xl mb-2; } h2 { - @apply text-2xl underline decoration-amber-900 decoration-4 mt-6 block; + @apply text-2xl underline decoration-slate-900 decoration-4 mt-6 block; } h3 { - @apply mt-6 text-amber-900 font-bold; + @apply mt-6 text-slate-900 font-bold; } main { @apply p-4; diff --git a/src/style/global.pcss b/src/style/global.pcss index a1831f0..a7bdd80 100644 --- a/src/style/global.pcss +++ b/src/style/global.pcss @@ -22,5 +22,5 @@ } .centered-button { - @apply w-48 block text-xl mt-6 px-6 py-3 text-white no-underline bg-amber-600 rounded hover:bg-slate-600 hover:underline mx-auto text-center; + @apply w-48 block text-xl mt-6 px-6 py-3 text-white no-underline bg-slate-600 rounded hover:bg-slate-600 hover:underline mx-auto text-center; } diff --git a/src/style/header.pcss b/src/style/header.pcss index 7345635..5f77ef4 100644 --- a/src/style/header.pcss +++ b/src/style/header.pcss @@ -17,14 +17,14 @@ header { > li:hover { > ul { - @apply block absolute z-10 left-1 top-6 flex flex-col bg-amber-200 drop-shadow-lg rounded-md border-amber-900 border-2 m-1; + @apply block absolute z-10 left-1 top-6 flex flex-col bg-slate-200 drop-shadow-lg rounded-md border-slate-900 border-2 m-1; > li { @apply whitespace-nowrap p-1; } > li:hover { - @apply bg-amber-800 text-white; + @apply bg-slate-800 text-white; } } }