From c2afd94b9c3c1a94469ef0a875e4870ecb78ffd9 Mon Sep 17 00:00:00 2001 From: Timmy Keller Date: Mon, 12 Aug 2024 21:04:24 -0500 Subject: tweaks --- layouts/shortcodes/img-longcaption.html | 5 +++++ static/stylesheets/style.css | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 layouts/shortcodes/img-longcaption.html diff --git a/layouts/shortcodes/img-longcaption.html b/layouts/shortcodes/img-longcaption.html new file mode 100644 index 0000000..c005d2e --- /dev/null +++ b/layouts/shortcodes/img-longcaption.html @@ -0,0 +1,5 @@ +
+
+ {{ .Inner }} +
+
diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index e0a82cf..8caa40b 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -4,6 +4,7 @@ html { body { margin: 0 0 1.5em 0; color: white; + font-family: serif; } header { @@ -59,6 +60,7 @@ main, footer{ hr { color: #727272; + margin: 2em 0; } h1, h2, h3, h4, h5, h6 { @@ -121,7 +123,7 @@ img, figcaption { opacity: .2; } -@media (max-width: 800px) { +@media (max-width: 1000px) { header { grid-template-columns: auto auto; grid-template-areas: @@ -136,4 +138,7 @@ img, figcaption { order: 3; grid-area: title; } + ol, ul, pre code { + margin-left: 0; + } } -- cgit v1.2.3