aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-12-06 08:28:28 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-12-06 08:28:28 -0500
commit4c3d47f53037aa17b2047e755ffeb47c5ffc5692 (patch)
tree35651b7589320c3ab0117c6c95eba9fab39177ba
parenta2bcfc37f3634179b4e75fff38d4c36a1ab2a812 (diff)
downloadstasis-4c3d47f53037aa17b2047e755ffeb47c5ffc5692.tar.gz
Fix irritating CSS defaults
* Left-aligned title text * Will use the maximum width of the browser window
-rw-r--r--stasis_pandoc.css6
1 files changed, 5 insertions, 1 deletions
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;