diff --git a/resources/main.css b/resources/main.css index 833b93c..f587fa8 100644 --- a/resources/main.css +++ b/resources/main.css @@ -1,5 +1,7 @@ :root { - color-scheme: light dark; + color-scheme: light dark; + color: light-dark(#474747, #b9b9b9); + background-color: light-dark(#ebebeb, #252525); } body { @@ -9,5 +11,16 @@ body { } .post-body { - max-width: 80%; + width: 66%; + display: block; + padding: 1rem; + background-color: light-dark(#ffffff, #181818); +} + +.post-body > h1 { + text-align: center; +} + +.post-body > p { + text-align: justify; }