From c50639134ed7923595c9d92d3a6ceed4ce89bee8 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 13 Aug 2024 17:03:23 +0200 Subject: [PATCH] fixing card titles colors --- resources/css/blocks/page-card.css | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/resources/css/blocks/page-card.css b/resources/css/blocks/page-card.css index de91783..0fccb46 100644 --- a/resources/css/blocks/page-card.css +++ b/resources/css/blocks/page-card.css @@ -38,3 +38,47 @@ /* position: unset; */ } } + +.post-card--coproprietes, +.post-card--mede-eigendommen, +.post-card--acoustique, +.post-card--akoestiek { + h2.post-card__title { + @apply text-acoustique-coproprietes; + } +} + +.post-card--urbanisme, +.post-card--stedenbouw, +.post-card--energies, +.post-card--energie { + h2.post-card__title { + @apply text-energies-urbanisme; + } +} + +.post-card--au-quotidien, +.post-card--dagelijks, +.post-card--isolatie, +.post-card--isolation { + h2.post-card__title { + @apply text-isolation-quotidien; + } +} + +.post-card--patrimoine, +.post-card--erfgoed, +.post-card--sante-et-securite, +.post-card--gezondheid-en-veiligheid { + h2.post-card__title { + @apply text-patrimoine-sante-securite; + } +} +.post-card--location, +.post-card--verhuur, +.post-card--durabilite, +.post-card--duurzaamheid { + h2.post-card__title { + @apply !text-location-durabilite; + } +}