From f3bf72669466ea6ad45cc4aff172a05da7fe3842 Mon Sep 17 00:00:00 2001 From: zepp Date: Sun, 9 Mar 2025 17:21:02 -0400 Subject: [PATCH] modify site style remove details, p, ul, figcaption from margin rule give p 0.5rem left right 1rem top bottom margin remove rules from other removed elements --- src/styles/global.css | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index 06537ad..3db3082 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -38,14 +38,14 @@ h2, h3, h4, h5, -h6, -p, -ul, -figcaption, -details { +h6 { margin: 0.5rem; } +p { + margin: 1rem 0.5rem; +} + main { background-color: var(--background-color); border-radius: 25px; @@ -107,10 +107,6 @@ main section p { line-height: 1.25; } -main section ul li { - padding-bottom: 0.25rem; -} - .photo-gallery-header { text-align: center; }