From c3e0305df5afcc9d29ff54d8e134f127baa0a0aa Mon Sep 17 00:00:00 2001 From: flupe Date: Thu, 18 Mar 2021 15:37:29 +0100 Subject: [PATCH] further theming --- content/assets/theme.css | 22 +++++++++++++++++----- src/Config.hs | 2 +- src/Posts.hs | 2 -- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/content/assets/theme.css b/content/assets/theme.css index 87f4d82..5ea0fb9 100644 --- a/content/assets/theme.css +++ b/content/assets/theme.css @@ -15,14 +15,14 @@ --text-strong: #434c5e; --text: #4c566a; --dark: #d8dee9; - --darker: #4c566a; + --darker: #d8dee9; } @media (prefers-color-scheme: dark) { :root { --background: #3b4252; --dark: #3b4252; - --darker: #000; + --darker: #2e3440; --text-strong: #fff; --text: #d8dee9; --text-faded: #9ea6b5; @@ -97,11 +97,15 @@ a:hover {text-decoration: underline} hr { border: none; height: 2px; - background: var(--dark); + background: var(--darker); margin: 2.5em 0; } -#pidx { list-style: none; padding: 0 } +#pidx { + list-style: none; + padding: 0; + margin: 2em 0 0; +} #pidx li {line-height: 1.6em} #pidx li > span { font-family: monospace; @@ -135,8 +139,12 @@ strong { width: 100%; } +#hd svg path { + stroke: var(--text) !important +} + #hd section > a { - margin:0 1em 0 0; + margin:-2px 1em 0 0; display: flex; align-items: center; } @@ -310,6 +318,10 @@ section.visual { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } +section.visual:not(.tiny) { + grid-template-rows: masonry; +} + section.visual.tiny { align-items: stretch; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); diff --git a/src/Config.hs b/src/Config.hs index 38aa05e..bc7b4a2 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -16,7 +16,7 @@ config = def , ignore = [ "**/*.agdai" , "**/*~" ] - } where root = "/home/flupe/dev/site/" + } where root = "/home/flupe/dev/acatalepsie/" ropts :: Pandoc.ReaderOptions diff --git a/src/Posts.hs b/src/Posts.hs index fa9e341..b2c8340 100644 --- a/src/Posts.hs +++ b/src/Posts.hs @@ -148,8 +148,6 @@ renderIndex imgs posts content = , height_ (fromString $ show imgThumbHeight) ] - p_ [class_ "right"] $ a_ [href_ "/visual.html"] "→ View more visual work" - ul_ [ id_ "pidx" ] $ forM_ posts \post -> li_ do span_ $ fromString $ showDate (postDate post)