From 70f6cff701d012e627114a2f6280096f1293d71d Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Tue, 2 Aug 2022 12:31:41 -0500 Subject: [PATCH] tweak highlight config --- config.yaml | 5 +++++ static/styles.css | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/config.yaml b/config.yaml index 71bf11f..dcb2451 100644 --- a/config.yaml +++ b/config.yaml @@ -1,3 +1,8 @@ baseURL: https://ariadne.space/ languageCode: en-us title: Ariadne's Space +permalinks: + blog: /:year/:month/:day/:title/ +markup: + highlight: + noClasses: false diff --git a/static/styles.css b/static/styles.css index f5bf31c..7b46d69 100644 --- a/static/styles.css +++ b/static/styles.css @@ -44,9 +44,23 @@ h1, h2, h3, h4, h5, h6 { margin: 0 0 1em 0; } +.article a { + display: block; + margin: 0 0 0.75em 0; +} + +.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 { + margin: 0 0 0.25em 0; +} + [rel="me"] img { width: 15em; height: 15em; padding-bottom: 0.5em; border-radius: 15em; } + +.highlight pre { + background-color: #0a0316; + tab-size: 4; +}