reading: update
Anirudh Oppiliappan x@icyphox.sh
Tue, 31 Dec 2024 15:57:13 +0200
5 files changed,
19 insertions(+),
15 deletions(-)
M
pages/reading.yaml
→
pages/reading.yaml
@@ -11,7 +11,7 @@ - 2024:
- name: Dune Messiah link: https://en.wikipedia.org/wiki/Dune_Messiah author: Frank Herbert - status: now reading + status: ★★★★ - name: Dust link: https://en.wikipedia.org/wiki/Silo_(series) author: Hugh Howey
M
static/style.css
→
static/style.css
@@ -108,23 +108,24 @@ h3 {
margin: 40px 0 20px 0; } -.logo svg { +.logo { + svg { max-height: 2.5rem; max-width: 2.5rem; transform: translateY(-10%); fill: var(--fg); -} + + } -.logo { - flex-grow: 1; - margin-right: 1rem; - text-decoration: none; - border-bottom: unset; - background: unset !important; -} + flex-grow: 1; + margin-right: 1rem; + text-decoration: none; + border-bottom: unset; + background: unset !important; -.logo:hover { + a, a:hover { border-bottom: unset; + } } .footimgs a {@@ -283,6 +284,7 @@ white-space: nowrap;
vertical-align: baseline; color: var(--gray); text-transform: lowercase; + padding-left: 0.8rem; float: right; } }
M
templates/blog.html
→
templates/blog.html
@@ -23,11 +23,11 @@ {{ $posts := .Extra }}
{{ range $posts }} <li> <div class="post"> - <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> + <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> {{ if .Meta.draft }} (<span class="draft">draft</span>) {{ end }} - <p class="subtitle">{{ .Meta.subtitle }}</p> + <p style="text-transform: lowercase" class="subtitle">{{ .Meta.subtitle }}</p> </div> {{ $dateStr := .Meta.date }} {{ $date := parsedate $dateStr }}
M
templates/index.html
→
templates/index.html
@@ -26,7 +26,7 @@ {{ $posts := .Extra.blog }}
{{ range slice $posts 0 3 }} <li> <div class="post"> - <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> + <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> {{ if .Meta.draft }} (<span class="draft">draft</span>) {{ end }}