chore(*): remove unused styles, images, clean up and format

This commit is contained in:
Cory Dransfeldt 2025-05-04 15:36:44 -07:00
parent 573b66a170
commit 58e41de50b
No known key found for this signature in database
19 changed files with 48 additions and 93 deletions

View file

@ -25,9 +25,7 @@ function renderPaginator(array $pagination, int $totalPages): void {
<?php endforeach; ?> <?php endforeach; ?>
</select> </select>
<noscript> <noscript>
<p> <p><span aria-current="page"><?= $pagination['pageNumber'] ?></span> of <?= $totalPages ?></p>
<span aria-current="page"><?= $pagination['pageNumber'] ?></span> of <?= $totalPages ?>
</p>
</noscript> </noscript>
</select-pagination> </select-pagination>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View file

@ -8,11 +8,6 @@
to { opacity: 0; transform: scale(0.95); } to { opacity: 0; transform: scale(0.95); }
} }
dialog {
width: var(--sizing-full);
height: var(--sizing-full);
}
.dialog-open, .dialog-open,
.dialog-close { .dialog-close {
display: inline-flex; display: inline-flex;
@ -32,11 +27,18 @@ dialog {
} }
dialog { dialog {
width: var(--sizing-full);
height: var(--sizing-full);
background: var(--background-color); background: var(--background-color);
padding: var(--spacing-lg) var(--spacing-base); padding: var(--spacing-lg) var(--spacing-base);
overflow-y: auto; overflow-y: auto;
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
font-size: var(--font-size-base); font-size: var(--font-size-base);
animation: fadeIn var(--transition-duration-default) var(--transition-ease-in-out);
&::backdrop {
background: var(--dialog-overlay-background);
}
&.closing { &.closing {
animation: fadeOut var(--transition-duration-default) var(--transition-ease-in-out); animation: fadeOut var(--transition-duration-default) var(--transition-ease-in-out);
@ -78,11 +80,3 @@ dialog {
} }
} }
} }
dialog {
animation: fadeIn var(--transition-duration-default) var(--transition-ease-in-out);
}
dialog::backdrop {
background: var(--dialog-overlay-background);
}

View file

@ -5,19 +5,19 @@ progress {
background-color: var(--gray-light); background-color: var(--gray-light);
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
overflow: hidden; overflow: hidden;
}
progress::-webkit-progress-bar { &::-webkit-progress-bar {
background-color: var(--gray-light); background-color: var(--gray-light);
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
} }
progress::-webkit-progress-value { &::-webkit-progress-value {
background-color: var(--accent-color); background-color: var(--accent-color);
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
} }
progress::-moz-progress-bar { &::-moz-progress-bar {
background-color: var(--accent-color); background-color: var(--accent-color);
border-radius: var(--border-radius-full); border-radius: var(--border-radius-full);
} }
}

View file

@ -11,7 +11,6 @@
@import url("./base/index.css") layer(base); @import url("./base/index.css") layer(base);
/* page styles */ /* page styles */
@import url("./pages/about.css") layer(page);
@import url("./pages/books.css") layer(page); @import url("./pages/books.css") layer(page);
@import url("./pages/contact.css") layer(page); @import url("./pages/contact.css") layer(page);
@import url("./pages/links.css") layer(page); @import url("./pages/links.css") layer(page);

View file

@ -8,7 +8,8 @@
height: unset !important; height: unset !important;
overflow: unset !important; overflow: unset !important;
margin-bottom: unset !important; margin-bottom: unset !important;
}
[data-toggle-content].text-toggle-hidden::after { &::after {
display: none !important; display: none !important;
} }
}

View file

@ -1,21 +0,0 @@
.avatar-wrapper {
--avatar-size: 16rem;
display: flex;
justify-content: center;
width: var(--sizing-full);
@media screen and (min-width: 768px) {
--avatar-size: 24rem;
}
img {
width: var(--avatar-size);
height: var(--avatar-size);
}
}
.about-title {
margin: var(--margin-vertical-base-horizontal-zero);
text-align: center;
}

View file

@ -21,7 +21,7 @@
} }
} }
.image-media { .media-image {
border: var(--border-gray); border: var(--border-gray);
} }

View file

@ -1,5 +1,5 @@
.artist-focus { .artist-focus {
.image-media { .media-image {
aspect-ratio: var(--aspect-ratio-square); aspect-ratio: var(--aspect-ratio-square);
width: var(--sizing-full); width: var(--sizing-full);
height: auto; height: auto;

View file

@ -11,7 +11,7 @@ permalink: "{{ feed.permalink }}.json"
{ {
"version": "https://jsonfeed.org/version/1", "version": "https://jsonfeed.org/version/1",
"title": "{{ feed.title | append: " • " | append: globals.site_name }}", "title": "{{ feed.title | append: " • " | append: globals.site_name }}",
"icon": "{{ globals.url }}/assets/icons/feed.png", "icon": "{{ globals.cdn_url }}{{ globals.avatar }}?class=w144&v={% appVersion %}",
"home_page_url": "{{ globals.url }}", "home_page_url": "{{ globals.url }}",
"feed_url": "{{ globals.url }}{{ feed.permalink }}.json", "feed_url": "{{ globals.url }}{{ feed.permalink }}.json",
"items": [ "items": [

View file

@ -17,7 +17,7 @@ permalink: "{{ feed.permalink }}.xml"
<atom:link href="{{ globals.url }}{{ feed.permalink }}.xml" rel="self" type="application/rss+xml" /> <atom:link href="{{ globals.url }}{{ feed.permalink }}.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ "now" | date:"%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate> <lastBuildDate>{{ "now" | date:"%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
<image> <image>
<url>{{ globals.url }}/assets/icons/feed.png</url> <url>{{ globals.cdn_url }}{{ globals.avatar }}?class=w144&v={% appVersion %}</url>
<title><![CDATA[{{ feed.title | append: " • " | append: globals.site_name }}]]></title> <title><![CDATA[{{ feed.title | append: " • " | append: globals.site_name }}]]></title>
<link>{{ globals.url }}{{ feed.permalink }}.xml</link> <link>{{ globals.url }}{{ feed.permalink }}.xml</link>
<width>144</width> <width>144</width>

View file

@ -1,5 +1,3 @@
<div class="banner coffee"> <div class="banner coffee">
<p> <p>{% tablericon "coffee" %} <a class="coffee" href="https://buymeacoffee.com/cory">If you found this post helpful, you can buy me a coffee.</a></p>
{% tablericon "coffee" %} <a class="coffee" href="https://buymeacoffee.com/cory">If you found this post helpful, you can buy me a coffee.</a>
</p>
</div> </div>

View file

@ -1,5 +1,3 @@
<div class="banner mail"> <div class="banner mail">
<p> <p>{% tablericon "mail" %} <a class="mail" href="/contact">Reply to or discuss this post via email.</a></p>
{% tablericon "mail" %} <a class="mail" href="/contact">Reply to or discuss this post via email.</a>
</p>
</div> </div>

View file

@ -57,8 +57,8 @@
{%- endif -%} {%- endif -%}
</h3> </h3>
{% render "blocks/tags.liquid", {% render "blocks/tags.liquid",
18 tags:item.tags tags:item.tags
19 %} %}
</article> </article>
{%- endfor -%} {%- endfor -%}
</article> </article>

View file

@ -9,13 +9,13 @@
{%- endif -%} {%- endif -%}
{%- endcapture -%} {%- endcapture -%}
{%- capture pageDescription -%} {%- capture pageDescription -%}
{% if page.description %} {%- if page.description -%}
{{ page.description }} {{ page.description }}
{% elsif description %} {%- elsif description -%}
{{ description }} {{ description }}
{% else %} {%- else -%}
{{ globals.site_description }} {{ globals.site_description }}
{% endif %} {%- endif -%}
{%- endcapture -%} {%- endcapture -%}
{%- assign ogImage = globals.cdn_url | append: globals.avatar -%} {%- assign ogImage = globals.cdn_url | append: globals.avatar -%}
{%- case schema -%} {%- case schema -%}
@ -83,7 +83,7 @@
{% render "metadata/static.liquid" {% render "metadata/static.liquid"
fullUrl:fullUrl, fullUrl:fullUrl,
pageTitle:pageTitle, pageTitle:pageTitle,
pageDescription:pageDescription pageDescription:pageDescription,
ogImage:ogImage, ogImage:ogImage,
globals:globals, globals:globals,
%} %}

View file

@ -1,8 +1,8 @@
{%- assign description = pageDescription | markdown | strip_html | htmlTruncate | escape -%} {%- assign description = pageDescription | markdown | strip_html | htmlTruncate | escape -%}
<title>{{- pageTitle -}}</title> <title>{{ pageTitle }}</title>
<meta property="og:title" content="{{- pageTitle -}}" /> <meta property="og:title" content="{{ pageTitle }}" />
<meta name="description" content="{{- description -}}" /> <meta name="description" content="{{ description }}" />
<meta property="og:description" content="{{- description -}}" /> <meta property="og:description" content="{{ description }}" />
<meta property="og:type" content="article" /> <meta property="og:type" content="article" />
<meta property="og:url" content="{{ fullUrl }}" /> <meta property="og:url" content="{{ fullUrl }}" />
<link rel="canonical" href="{{ fullUrl }}" /> <link rel="canonical" href="{{ fullUrl }}" />

View file

@ -6,16 +6,11 @@
{%- assign prevHref = pagination.href.previous -%} {%- assign prevHref = pagination.href.previous -%}
{%- assign nextHref = pagination.href.next -%} {%- assign nextHref = pagination.href.next -%}
{% if prevHref %} {% if prevHref %}
<a <a href="{{ prevHref }}" aria-label="Previous page">
href="{{ prevHref }}"
aria-label="Previous page"
>
{% tablericon "arrow-left" %} {% tablericon "arrow-left" %}
</a> </a>
{% else %} {% else %}
<span> <span>{% tablericon "arrow-left" %}</span>
{% tablericon "arrow-left" %}
</span>
{% endif %} {% endif %}
<select-pagination> <select-pagination>
<select class="client-side" aria-label="Page selection"> <select class="client-side" aria-label="Page selection">
@ -26,22 +21,15 @@
{%- endfor -%} {%- endfor -%}
</select> </select>
<noscript> <noscript>
<p> <p><span aria-current="page">{{ pagination.pageNumber | plus:1 }}</span> of {{ pagination.links.size }}</p>
<span aria-current="page">{{ pagination.pageNumber | plus:1 }}</span> of {{ pagination.links.size }}
</p>
</noscript> </noscript>
</select-pagination> </select-pagination>
{% if nextHref %} {% if nextHref %}
<a <a href="{{ nextHref }}" aria-label="Next page">
href="{{ nextHref }}"
aria-label="Next page"
>
{% tablericon "arrow-right" %} {% tablericon "arrow-right" %}
</a> </a>
{% else %} {% else %}
<span> <span>{% tablericon "arrow-right" %}</span>
{% tablericon "arrow-right" %}
</span>
{% endif %} {% endif %}
</nav> </nav>
{%- endunless -%} {%- endunless -%}

View file

@ -7,7 +7,7 @@ schema: artist
<article class="artist-focus"> <article class="artist-focus">
<div class="artist-display"> <div class="artist-display">
<img <img
class="image-media" class="media-image"
srcset=" srcset="
{{ globals.cdn_url }}<?= htmlspecialchars($artist["image"]) ?>?class=w200&type=webp 200w, {{ globals.cdn_url }}<?= htmlspecialchars($artist["image"]) ?>?class=w200&type=webp 200w,
{{ globals.cdn_url }}<?= htmlspecialchars($artist["image"]) ?>?class=w600&type=webp 400w, {{ globals.cdn_url }}<?= htmlspecialchars($artist["image"]) ?>?class=w600&type=webp 400w,

View file

@ -7,7 +7,7 @@ schema: book
<article class="book-focus"> <article class="book-focus">
<div class="book-display"> <div class="book-display">
<img <img
class="image-media" class="media-image"
srcset=" srcset="
{{ globals.cdn_url }}<?= htmlspecialchars($book["image"]) ?>?class=verticalsm&type=webp 200w, {{ globals.cdn_url }}<?= htmlspecialchars($book["image"]) ?>?class=verticalsm&type=webp 200w,
{{ globals.cdn_url }}<?= htmlspecialchars($book["image"]) ?>?class=verticalmd&type=webp 400w, {{ globals.cdn_url }}<?= htmlspecialchars($book["image"]) ?>?class=verticalmd&type=webp 400w,