From 8673ee9e4a61a3c52801ab475df5f45da9555a4f Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Mon, 29 Dec 2025 08:55:49 -0800 Subject: [PATCH] status add and css for ul --- index.html | 5 ++++- styles/main.css | 16 +++++++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index f5d31c0..0b563a5 100644 --- a/index.html +++ b/index.html @@ -36,7 +36,10 @@

Markets at the Beall Greenhouses

Status

-

We've just completed a successful Solstice 2025 market. Stay tuned for more!

+ diff --git a/styles/main.css b/styles/main.css index be89738..f68f83f 100644 --- a/styles/main.css +++ b/styles/main.css @@ -101,19 +101,25 @@ a:focus-visible { outline: solid .25rem var(--color-accent); } -p { - background-color: var(--color-alt); - color: var(--color-text); +p, +ul { padding: .5rem; + background-color: var(--color-alt); border-radius: 0 0 1rem 1rem; } -main > p { +li { + margin-left: 1rem; +} + +main > p, +main > ul { margin-left: 2.5rem; } @media (max-width: 650px) { - main > p { + main > p, + main > ul { margin-left: 1.25rem; } }