From 4c3d47f53037aa17b2047e755ffeb47c5ffc5692 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 6 Dec 2024 08:28:28 -0500 Subject: Fix irritating CSS defaults * Left-aligned title text * Will use the maximum width of the browser window --- stasis_pandoc.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stasis_pandoc.css b/stasis_pandoc.css index 456c3e9..634939f 100644 --- a/stasis_pandoc.css +++ b/stasis_pandoc.css @@ -7,7 +7,7 @@ html { body { margin: 0 auto; - max-width: 50%; + max-width: 100%; padding-left: 50px; padding-right: 50px; padding-top: 50px; @@ -94,6 +94,10 @@ h6 { font-weight: normal; } +h1.title { + text-align: left; +} + ol, ul { padding-left: 1.7em; -- cgit