From 73b06c31b505d1a0f2e4035c7daab0df49a25d3b Mon Sep 17 00:00:00 2001 From: foswret Date: Sun, 22 Mar 2026 12:54:35 -0500 Subject: implement basic nav bar --- static/style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 static/style.css (limited to 'static') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..73c3565 --- /dev/null +++ b/static/style.css @@ -0,0 +1,18 @@ +html { + /* overflow-y needed for chromium browsers to not shift */ + overflow-y: scroll; +} + +nav { + display: inline; +} + +body { + /* margin: 0 auto; */ + max-width: 50%; +} + +img { + /* pixelated for aesthetics */ + image-rendering: pixelated; +} -- cgit v1.2.3