From e585bf3cdff3d4dc1e2d4febe948146eafa24f2d Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Tue, 6 Jan 2026 15:14:30 -0800 Subject: [PATCH] slight tweaks to directory layout to work with ul as well as ol --- artists/index.html | 4 ++-- assets/styles/directory.css | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/artists/index.html b/artists/index.html index 33b7109..0be8972 100644 --- a/artists/index.html +++ b/artists/index.html @@ -40,14 +40,14 @@

Artists in residence at the Beall Greenhouses

-
    +
+
diff --git a/assets/styles/directory.css b/assets/styles/directory.css index 7839032..5c71850 100644 --- a/assets/styles/directory.css +++ b/assets/styles/directory.css @@ -1,6 +1,5 @@ #directory { display: grid; - flex-flow: row wrap; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin: 0 .5rem; @@ -12,6 +11,12 @@ } } +ul#directory, +ol#directory { + background-color: var(--color-bg); + padding: 0; +} + #directory li { list-style: none; border: solid .25rem var(--color-accent);