From daf015bde102a3896cc55aefe06b73c83728c8c6 Mon Sep 17 00:00:00 2001 From: John Doty Date: Tue, 24 Sep 2024 18:52:24 -0700 Subject: [PATCH] Whoops missed this --- cry/static/style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 cry/static/style.css diff --git a/cry/static/style.css b/cry/static/style.css new file mode 100644 index 0000000..a6d1d8c --- /dev/null +++ b/cry/static/style.css @@ -0,0 +1,43 @@ +body { + margin-right: 4rem; + margin-left: 4rem; + margin-top: 0; + margin-bottom: 0; + display: flex; + flex-direction: column; + height: 100vh; +} + +header { + /* padding: 10px; */ +} + +.content { + flex: 1; /* This makes the content section fill the available space */ + overflow-y: auto; /* Allows vertical scrolling */ + padding: 10px; +} + +footer { + padding: 10px; +} + +h1 { + margin-top: 2rem; + margin-bottom: 0.25rem; +} + +h2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +li.entry { + display: inline; + padding-right: 1rem; +} + +li.entry:before { + content: '\2022'; + padding-right: 0.5rem; +}