From 30dd87ef882c278c946e6bfa760bae1b986f9a8f Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Wed, 30 Aug 2023 23:30:57 +0000 Subject: [PATCH] Add styling. --- hugo.toml | 5 +++++ static/css/custom.css | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 static/css/custom.css diff --git a/hugo.toml b/hugo.toml index 965f924..6b005d2 100644 --- a/hugo.toml +++ b/hugo.toml @@ -5,9 +5,14 @@ theme = 'mainroad' [Params] description = 'Thoughts from the Leftist Edge of Heathenry' +copyright = "Anna Rose Wiggins" dateformat = '2006-01-02' post_meta = ["date", "author"] +customCSS = ["css/custom.css"] [Params.sidebar] home = "right" widgets = ["search", "taglist"] + +[Params.style.vars] +fontFamilyPrimary = "'Georgia'" diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..9cbe7c5 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,16 @@ +body { + font-size: 1.1em; +} + +figcaption { + font-size: 0.9em; +} + +.list__title { + font-family: "Playfair Display"; + font-size: 1.7em; +} + +.list__title .href { + color: black; +}