diff --git a/package-lock.json b/package-lock.json index e9ca25b3..20b34d14 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "22.2.3", + "version": "22.2.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "22.2.3", + "version": "22.2.4", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index ab6ad865..bc8bc350 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "22.2.3", + "version": "22.2.4", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index f94557a6..d25ed16f 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -217,30 +217,12 @@ h6 { font-size: var(--font-size-sm); } & .section-header { margin: 0; } - - & .section-header-buttons { - display: flex; - align-items: center; - gap: var(--sizing-sm); - - & > button { - margin-bottom: 0 !important; - - &:last-of-type { - margin-right: 0 !important; - } - } - } } .section-header { margin: var(--sizing-xl) 0 var(--sizing-lg); line-height: 1; - &.no-top-margin { - margin: 0 0 var(--sizing-lg); - } - &.posts { margin: 0 0 var(--sizing-lg); } @@ -252,6 +234,10 @@ hr { background-color: var(--gray-light); border: 0; margin: var(--sizing-base) 0; + + & + .section-header { + margin-top: 0; + } } /* tables */ @@ -412,6 +398,10 @@ nav .active svg { & .article-widget-wrapper:last-of-type { border-bottom: none; } + + & > h2 { + margin-top: 0; + } } .main-wrapper { @@ -488,11 +478,6 @@ footer { /* articles */ article { - & h2 { - margin: 0 0 var(--sizing-lg); - transition-property: color; - } - & h3 { margin: 0; display: inline-block; @@ -546,19 +531,6 @@ li { margin-bottom: var(--sizing-lg); } -.link-list { - margin: 0; - - & li { - margin-top: var(--sizing-sm); - margin-bottom: var(--sizing-sm); - - &:last-child { - margin-bottom: 0; - } - } -} - /* images */ .image-banner { border: var(--border-default); @@ -567,11 +539,6 @@ li { display: block; } -/* pages */ -.page-header { - margin-top: 0; -} - /* utilities */ .highlight-text { color: var(--color-lightest); @@ -587,6 +554,13 @@ li { text-align: center !important; } +.text-centered-vertically { + min-height: 60vh; + display: flex; + align-items: center; + justify-content: center; +} + .text-small { font-size: var(--font-size-sm) !important; } diff --git a/src/assets/styles/components/buttons.css b/src/assets/styles/components/buttons.css index 9cc28e75..98ffd56e 100644 --- a/src/assets/styles/components/buttons.css +++ b/src/assets/styles/components/buttons.css @@ -9,7 +9,6 @@ button, &:not(.theme-toggle) { border: 2px solid var(--accent-color); padding: var(--sizing-sm) var(--sizing-lg); - margin: 0 var(--sizing-xs) var(--sizing-md) 0; cursor: pointer; display: inline-flex; flex-direction: row; diff --git a/src/assets/styles/components/forms.css b/src/assets/styles/components/forms.css index 9c3af677..6cfd9013 100644 --- a/src/assets/styles/components/forms.css +++ b/src/assets/styles/components/forms.css @@ -15,11 +15,18 @@ textarea { font-size: var(--font-size-base); width: 100%; border-radius: 0; - margin-bottom: var(--sizing-base); font-weight: var(--font-weight-base); line-height: var(--line-height-base); } +label:has(input):has(+ *) input, +input[type="text"]:has(+ *), +input[type="email"]:has(+ *), +input[type="search"]:has(+ *), +textarea:has(+ *) { + margin-bottom: var(--sizing-base); +} + input:focus, input:focus-within, textarea:focus, diff --git a/src/assets/styles/components/tab-buttons.css b/src/assets/styles/components/tab-buttons.css index c5d7877b..4b0323e5 100644 --- a/src/assets/styles/components/tab-buttons.css +++ b/src/assets/styles/components/tab-buttons.css @@ -13,6 +13,10 @@ input[id="tracks-window"] ~ [for="tracks-window"] { margin-bottom: var(--sizing-lg); } +input[id="tracks-recent"] ~ [for="tracks-recent"]:has(+ [for="tracks-window"]) { + margin-right: var(--sizing-xs); +} + #tracks-recent:not(:checked) ~ [for="tracks-recent"]:hover, #tracks-recent:not(:checked) ~ [for="tracks-recent"]:active, #tracks-window:not(:checked) ~ [for="tracks-window"]:hover, diff --git a/src/assets/styles/components/text-toggle.css b/src/assets/styles/components/text-toggle.css index 76f65f51..31a1980e 100644 --- a/src/assets/styles/components/text-toggle.css +++ b/src/assets/styles/components/text-toggle.css @@ -20,6 +20,6 @@ } } -[data-toggle-content]+button[data-toggle-button]:has(+ table) { +[data-toggle-content] + button[data-toggle-button]:has(+ table) { margin: 0 0 var(--sizing-base); } \ No newline at end of file diff --git a/src/assets/styles/pages/contact.css b/src/assets/styles/pages/contact.css index cc1e815d..8d32e8c7 100644 --- a/src/assets/styles/pages/contact.css +++ b/src/assets/styles/pages/contact.css @@ -6,10 +6,14 @@ height: calc(var(--sizing-3xl) * 5); resize: none; } + + & .column.description p:first-of-type { + margin-top: 0; + } } .contact-success-header { - margin: 0 0 var(--sizing-lg); + margin: 0 0 var(--sizing-base); } @media screen and (min-width: 768px) { @@ -24,8 +28,4 @@ padding-right: var(--sizing-xl); } } - - form { - margin-top: var(--sizing-base); - } } \ No newline at end of file diff --git a/src/pages/dynamic/blogroll.html b/src/pages/dynamic/blogroll.html index 2cd5d06c..78f503e8 100644 --- a/src/pages/dynamic/blogroll.html +++ b/src/pages/dynamic/blogroll.html @@ -4,7 +4,7 @@ layout: page permalink: /blogroll.html description: These are awesome blogs that I enjoy and you may enjoy too. --- - +

{{ title }}

You can Download OPML download an OPML file containing all of these feeds and import them into your RSS reader.

diff --git a/src/pages/dynamic/books/index.html b/src/pages/dynamic/books/index.html index cf16c50a..ab13ff3b 100644 --- a/src/pages/dynamic/books/index.html +++ b/src/pages/dynamic/books/index.html @@ -8,7 +8,7 @@ schema: books --- {%- assign bookData = books.all | bookStatus: 'started' | reverse -%} {%- assign currentBookCount = books.all | currentBookCount -%} - +

Currently reading

Here's what I'm reading at the moment. I've finished {{ currentBookCount }} books this year.

{{ books.years | bookYearLinks }}

{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/books", text: "Subscribe to my books feed or follow along on this page" %} diff --git a/src/pages/dynamic/books/year.html b/src/pages/dynamic/books/year.html index bfd88112..6dcb18d1 100644 --- a/src/pages/dynamic/books/year.html +++ b/src/pages/dynamic/books/year.html @@ -14,7 +14,7 @@ schema: books-year {%- assign yearString = year.value | append: '' -%} {%- assign currentYearString = currentYear | append: '' -%} {% tablericon "arrow-left" "Go back to the books index page" %} Back to books - +

{{ year.value }} / Books

{% if yearString == currentYearString %}

I've finished {{ bookData.size }} books this year.{%- if favoriteBooks %} Among my favorites are {{ favoriteBooks }}.{%- endif -%}

{% else %} diff --git a/src/pages/dynamic/links.html b/src/pages/dynamic/links.html index 5b435019..e6604c27 100644 --- a/src/pages/dynamic/links.html +++ b/src/pages/dynamic/links.html @@ -8,7 +8,7 @@ pagination: permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html" --- {% if pagination.pageNumber == 0 %} - +

Links

These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.

{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/links", text: "Subscribe to my links feed or follow along on this page" %}
diff --git a/src/pages/dynamic/music/albums/3-months.html b/src/pages/dynamic/music/albums/3-months.html index a4c3637f..650154bb 100644 --- a/src/pages/dynamic/music/albums/3-months.html +++ b/src/pages/dynamic/music/albums/3-months.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/albums/this-month.html b/src/pages/dynamic/music/albums/this-month.html index 979185b8..938d7025 100644 --- a/src/pages/dynamic/music/albums/this-month.html +++ b/src/pages/dynamic/music/albums/this-month.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/albums/this-week.html b/src/pages/dynamic/music/albums/this-week.html index c9883aec..56ca7e9c 100644 --- a/src/pages/dynamic/music/albums/this-week.html +++ b/src/pages/dynamic/music/albums/this-week.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/artists/3-months.html b/src/pages/dynamic/music/artists/3-months.html index 151e8eda..82535447 100644 --- a/src/pages/dynamic/music/artists/3-months.html +++ b/src/pages/dynamic/music/artists/3-months.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the albums or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/artists/this-month.html b/src/pages/dynamic/music/artists/this-month.html index e0c23f84..84e0b3d6 100644 --- a/src/pages/dynamic/music/artists/this-month.html +++ b/src/pages/dynamic/music/artists/this-month.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the albums or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/artists/this-week.html b/src/pages/dynamic/music/artists/this-week.html index eb5cd2f1..e8074f25 100644 --- a/src/pages/dynamic/music/artists/this-week.html +++ b/src/pages/dynamic/music/artists/this-week.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/concerts.html b/src/pages/dynamic/music/concerts.html index 31df48d5..6693cbf4 100644 --- a/src/pages/dynamic/music/concerts.html +++ b/src/pages/dynamic/music/concerts.html @@ -8,7 +8,7 @@ pagination: permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html" --- {%- if pagination.pageNumber == 0 -%} - +

Concerts

These are concerts I've attended (not all of them — just the ones I could remember or glean from emails, photo metadata et al). I've been to at least {{ concerts | size }} shows. You can also take a look at the music I've been listening to lately.


{%- endif -%} diff --git a/src/pages/dynamic/music/genre.html b/src/pages/dynamic/music/genre.html index c34a9c27..863ccf63 100644 --- a/src/pages/dynamic/music/genre.html +++ b/src/pages/dynamic/music/genre.html @@ -23,7 +23,7 @@ schema: genre {% tablericon "arrow-left" "Go back to the music index page" %} Back to music - +

{{ genre.name }}

{%- if mediaLinks -%}

My top {{ genre.name }} artists {{ connectingWord }} {{ mediaLinks }}. I've listened to {{ genre.total_plays | formatNumber }} tracks form this genre.

diff --git a/src/pages/dynamic/music/index.html b/src/pages/dynamic/music/index.html index 7d9b6996..71a2ee99 100644 --- a/src/pages/dynamic/music/index.html +++ b/src/pages/dynamic/music/index.html @@ -6,13 +6,13 @@ permalink: "/music/index.html" updated: "now" schema: music-index --- - +

{{ title }}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See more of the artists, albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.

You can also take a look at the concerts I've been to.

{% render "partials/blocks/now-playing.liquid", music:music %}
-

+

{% tablericon "microphone-2" "Artists" %} Artists diff --git a/src/pages/dynamic/music/periods/3-months.html b/src/pages/dynamic/music/periods/3-months.html index 4945e40d..5474e8fd 100644 --- a/src/pages/dynamic/music/periods/3-months.html +++ b/src/pages/dynamic/music/periods/3-months.html @@ -7,12 +7,12 @@ updated: "now" image: music.threeMonth.artists[0].image schema: music-period --- - +

{{ title }}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See more of the artists, albums or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.

You can also take a look at the concerts I've been to.


-

+

{% tablericon "microphone-2" "Artists" %} Artists diff --git a/src/pages/dynamic/music/periods/this-month.html b/src/pages/dynamic/music/periods/this-month.html index 4b2ac4be..499223e8 100644 --- a/src/pages/dynamic/music/periods/this-month.html +++ b/src/pages/dynamic/music/periods/this-month.html @@ -7,12 +7,12 @@ updated: "now" image: music.month.artists[0].image schema: music-period --- - +

{{ title }}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See more of the artists, albums or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.

You can also take a look at the concerts I've been to.


-

+

{% tablericon "microphone-2" "Artists" %} Artists diff --git a/src/pages/dynamic/music/tracks/3-months.html b/src/pages/dynamic/music/tracks/3-months.html index 6fad4655..8f534ac1 100644 --- a/src/pages/dynamic/music/tracks/3-months.html +++ b/src/pages/dynamic/music/tracks/3-months.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} -

+

{{ title }}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or albums I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/tracks/this-month.html b/src/pages/dynamic/music/tracks/this-month.html index 0d821945..5acfb695 100644 --- a/src/pages/dynamic/music/tracks/this-month.html +++ b/src/pages/dynamic/music/tracks/this-month.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or albums this month. Or take a look at what I've listened to this week or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/music/tracks/this-week.html b/src/pages/dynamic/music/tracks/this-week.html index 7eb90fd4..a0d8b85e 100644 --- a/src/pages/dynamic/music/tracks/this-week.html +++ b/src/pages/dynamic/music/tracks/this-week.html @@ -11,7 +11,7 @@ schema: music --- {% tablericon "arrow-left" "Go back to the music index page" %} Back to music {% if pagination.pageNumber == 0 %} - +

{{ title }}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

See the artists or albums I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.

You can also take a look at the concerts I've been to.

diff --git a/src/pages/dynamic/posts/post.html b/src/pages/dynamic/posts/post.html index 46768185..812a5f81 100644 --- a/src/pages/dynamic/posts/post.html +++ b/src/pages/dynamic/posts/post.html @@ -14,7 +14,7 @@ schema: blog {{ post.date | date: "%B %e, %Y" }} -

{{ post.title }}

+

{{ post.title }}

diff --git a/src/pages/dynamic/watching/index.html b/src/pages/dynamic/watching/index.html index 41b7e2d6..d7d6584c 100644 --- a/src/pages/dynamic/watching/index.html +++ b/src/pages/dynamic/watching/index.html @@ -12,7 +12,7 @@ schema: watching

Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.

{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/movies", text: "Subscribe to my movies feed or follow along on this page" %}
-

+

{% tablericon "movie" "Recent movies" %} Recent movies diff --git a/src/pages/static/contact.html b/src/pages/static/contact.html index 820177e3..15fdfaf1 100644 --- a/src/pages/static/contact.html +++ b/src/pages/static/contact.html @@ -4,7 +4,7 @@ layout: default permalink: /contact.html description: How to contact me. --- - +

{{ title }}

Fill out the form to get in touch. Or I've got other options 👇🏻

diff --git a/src/pages/static/search.html b/src/pages/static/search.html index ba628a5b..45850824 100644 --- a/src/pages/static/search.html +++ b/src/pages/static/search.html @@ -54,7 +54,7 @@ permalink: /search.html } })() - +

Search

You can find posts, links, artists, genres, movies and books via the field below (though it only surfaces movies and books I've written something about).