From c00d8889a24f89a699308996ce6d3cf110628f36 Mon Sep 17 00:00:00 2001 From: Chris Lowis Date: Wed, 10 Dec 2025 14:54:35 +0000 Subject: [PATCH] Simplify co-op page markup Now we no longer have two columns of content. --- _layouts/coop.html | 13 +++---------- assets/css/app.css | 33 --------------------------------- 2 files changed, 3 insertions(+), 43 deletions(-) diff --git a/_layouts/coop.html b/_layouts/coop.html index 47f54e9..895813e 100644 --- a/_layouts/coop.html +++ b/_layouts/coop.html @@ -13,16 +13,9 @@ {{ page.website }} -
-
-
- -
-
-

{{ content }}

-
-
-
+
+

{{ content }}

+
{% include footer.html %} diff --git a/assets/css/app.css b/assets/css/app.css index 3fdde42..13314f5 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -410,36 +410,3 @@ section.content h2 { display: flex; gap: var(--space-lg); } - -.two-column { - width: 100%; - display: flex; - flex-direction: column; - justify-content: center; - gap: var(--space-xl); - padding: var(--space-lg) -} - -@media screen and (width >= 480px) { - .two-column { - display: flex; - flex-direction: row; - } -} - -.two-column p { - max-width: 70ch; - padding-bottom: 10px; -} - -.two-column_left { - display: flex; - flex-direction: column; - gap: var(--space-sm); -} - -.two-column_right { - display: flex; - flex-direction: column; - gap: var(--space-lg); -}