From 65ab21c307318923eff63cd976578c58be58d3f2 Mon Sep 17 00:00:00 2001 From: ch0ccyra1n Date: Thu, 13 Apr 2023 14:30:09 -0700 Subject: [PATCH] set body text to sans-serif --- layouts/_default/single.html | 3 ++- static/css/style.css | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 6b30a55..36a4a3d 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,5 +1,6 @@ {{ define "main" }}

{{ .Title }}

+
{{ partial "metadata.html" . }}

{{ if $.Params.cws }} @@ -12,4 +13,4 @@ {{ else }} {{ .Content }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/static/css/style.css b/static/css/style.css index 9992485..fe18fb6 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -82,6 +82,10 @@ header h1 { text-align: center; } +h3 { + font-size: larger; +} + code { border-radius: 5px; padding: 1pt; @@ -196,6 +200,7 @@ li:first-child { } p { font-size: 16pt; + font-family: sans-serif; } body { @@ -214,4 +219,4 @@ label { #cw:checked + label { display: block; -} \ No newline at end of file +}