all repos — site @ 2fb4f497cf825728fc1d67291ceb270b78e64b1a

source for my site, found at icyphox.sh

reading: update
Anirudh Oppiliappan x@icyphox.sh
Tue, 31 Dec 2024 15:57:13 +0200
commit

2fb4f497cf825728fc1d67291ceb270b78e64b1a

parent

d7fbc599e7a9693bb6869160db0f0a388859c6a9

M pages/reading.yamlpages/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.cssstatic/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.htmltemplates/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.htmltemplates/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 }}
M templates/partials/nav.htmltemplates/partials/nav.html

@@ -1,5 +1,6 @@

<nav> - <a href="/" class="logo"> + <div class="logo"> + <a href="/"> <svg version="1.0" xmlns="http://www.w3.org/2000/svg"

@@ -44,6 +45,7 @@ />

</g> </svg> </a> + </div> <ul> <li><a href="/reading">reading</a></li> <li><a href="/photos">photos</a></li>