From 7f56115ccf220fc0bdb681ccd58d22fc430d9b8b Mon Sep 17 00:00:00 2001 From: sorrel Date: Sun, 21 Jan 2024 18:47:21 -0500 Subject: [PATCH] change styling for tags in footer was not wrapping and got cramped on mobile --- .dev-log | 4 ++-- static/style/styles.css | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.dev-log b/.dev-log index af69bcd..663d291 100644 --- a/.dev-log +++ b/.dev-log @@ -1,9 +1,9 @@ 2024/01/21 - .txt -> .scm for better source viewing in git forge -START HERE: - - pick a license - fix footer styling (tagged section is cramped with flex-row especially on mobile) +START HERE: + - pick a license - add view source link to every page (git forge of source/resource not static/resource; we're here for the sexprs) TODO: diff --git a/static/style/styles.css b/static/style/styles.css index 0b347ae..3c076bb 100644 --- a/static/style/styles.css +++ b/static/style/styles.css @@ -50,7 +50,7 @@ span.noscript p { span.hx-target section { border: solid 1px var(--link-color); border-radius: 4px; - padding: 0 10; + padding: 5 10; margin: 3; } @@ -62,6 +62,8 @@ a { font-family: 'Courier New', Courier, monospace; font-size: small; color: var(--link-color); + position: relative; + top: -2px; } a:visited { @@ -132,6 +134,7 @@ p { ul.tag-list { display: flex; flex-direction: row; + flex-wrap: wrap; margin: 6 0; padding: 0; }