From 4e4d18158d3fea28ca1a3bf782cd8be1250b6ce3 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 16 Jul 2025 15:30:34 +0200 Subject: [PATCH] FEATURE Refining component headings style --- resources/css/blocks/content-box.css | 32 +++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/resources/css/blocks/content-box.css b/resources/css/blocks/content-box.css index a9509db..ff8d0e0 100644 --- a/resources/css/blocks/content-box.css +++ b/resources/css/blocks/content-box.css @@ -27,6 +27,13 @@ --content-box-text-color: #fff; } + p, + li { + @apply font-light; + } + li { + @apply pb-2; + } p { @apply pb-8; } @@ -40,9 +47,32 @@ @apply max-w-screen-lg mx-auto px-8; } h3 { - @apply title-small font-bold; + /* @apply title-small font-bold; */ } + h1.wp-block-heading { + @apply !text-6xl mb-12; + } + + h3.wp-block-heading { + @apply !text-4xl uppercase fjalla font-light tracking-wide; + } + h4.wp-block-heading { + @apply !text-2xl uppercase nunito font-medium tracking-widest pb-1; + } + ul + h3, + p + h3 { + @apply mt-12; + } + + h3 + p { + @apply !mt-3; + } + + ul { + list-style: disc; + padding-left: 1.5rem; + } .carhop-heading:not(:first-child) { @apply pt-32; }