From 9ffe1ae7862ce92d3cc672a0a36dd5dbc0fba7f1 Mon Sep 17 00:00:00 2001 From: MetroWind Date: Sun, 27 Oct 2024 15:39:26 -0700 Subject: [PATCH] Fix index page style with multi-column --- templates/index.html | 2 +- templates/post.html | 2 +- themes/planck-light-columns/styles.css | 12 +++++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/templates/index.html b/templates/index.html index e05ea86..9875829 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,7 +11,7 @@
{% include "nav.html" %} -
+

{{ blog_title }}

diff --git a/templates/post.html b/templates/post.html index 698503b..ef5472f 100644 --- a/templates/post.html +++ b/templates/post.html @@ -12,7 +12,7 @@
{% include "nav.html" %} -
+

{{ blog_title }}

diff --git a/themes/planck-light-columns/styles.css b/themes/planck-light-columns/styles.css index 1811bfd..4bc48a2 100644 --- a/themes/planck-light-columns/styles.css +++ b/themes/planck-light-columns/styles.css @@ -6,12 +6,22 @@ width: 100%; } + footer + { + top: calc(100vh - 32px); + } + main#PostMain, #BlogTitle { max-width: unset; } - #ContentWrapper + #IndexWrapper + { + padding: 32px; + } + + #PostWrapper { columns: auto 700px; height: calc(100vh - 32px);