From 63f177475bc72d690b79e3d59a7602c214cc22f5 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 12 Oct 2024 20:54:03 +0200 Subject: [PATCH] old style; update for new grid layout It still looks terrible, but I suppose that was the entire idea of this optional style --- public/static/style/old.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/public/static/style/old.css b/public/static/style/old.css index 6eda75d..2c7b5db 100644 --- a/public/static/style/old.css +++ b/public/static/style/old.css @@ -2,6 +2,17 @@ body { background-image: url(old/chip.jpg); cursor: url(old/cursor.gif), auto; justify-content: flex-start; + grid-column-gap: 0em; + grid-template-columns: 200px 600px; + grid-template-rows: min-content min-content 1fr; + grid-template-areas: + "header main" + "menu main" + "footer main"; +} + +.main-sidebar { + display: none; } header { @@ -16,14 +27,15 @@ footer { a:hover { cursor: url(old/cursor-over.gif), auto; + color: red; } -.header-navigation { +body > nav, body > header, body > footer { background-color: cyan; color: black; } -.header-navigation> nav ul { +body > nav ul { padding-left: 2em; list-style-image: url(old/bullet.gif); }