miniblog

Miniblog: A command-line static blog system in Common Lisp
Log | Files | Refs | README | LICENSE

commit 0f16900d77f4c0aac47df27661fc3b03092015d5
parent 1f8bc450fbb001f73e389905f33106ac4daefb58
Author: Decay <decaydjk@tilde.town>
Date:   Tue, 11 Feb 2020 21:20:58 +0000

CSS fixup

Diffstat:
Msrc/template.lhtml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/template.lhtml b/src/template.lhtml @@ -8,7 +8,7 @@ <% @endif %> </title> <style> - header#miniblog-header { width :100%; } + header#miniblog-header { width: 100%; } section#miniblog-left { float: left; width: 15%; } section#miniblog-main { float: left; width: <%= (if (getf env :links) "65%" "80%") %>; } nav#miniblog-nav { float: left; width: 20%; } @@ -16,7 +16,7 @@ table.calendar td { width: 25%; } @media screen and (max-aspect-ratio: 1/1) { section#miniblog-left { float: none; width: 100%; } - section#miniblog-main { float: none; width: "100%"; } + section#miniblog-main { float: none; width: 100%; } nav#miniblog-nav { float: none; width: 100%; } } </style>