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; +}