chore: styles

This commit is contained in:
Cory Dransfeldt 2024-09-17 19:50:07 -07:00
parent bfbeba9916
commit 04622dbce7
No known key found for this signature in database
7 changed files with 50 additions and 48 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.15.2", "version": "24.16.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.15.2", "version": "24.16.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",
@ -1744,9 +1744,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.5.24", "version": "1.5.25",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.24.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.25.tgz",
"integrity": "sha512-0x0wLCmpdKFCi9ulhvYZebgcPmHTkFVUfU2wzDykadkslKwT4oAmDTHEKLnlrDsMGZe4B+ksn8quZfZjYsBetA==", "integrity": "sha512-kMb204zvK3PsSlgvvwzI3wBIcAw15tRkYk+NQdsjdDtcQWTp2RABbMQ9rUBy8KNEOM+/E6ep+XC3AykiWZld4g==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.16.0", "version": "24.16.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -48,6 +48,7 @@ body::-webkit-scrollbar {
p { p {
margin: var(--margin-vertical-base-horizontal-zero); margin: var(--margin-vertical-base-horizontal-zero);
overflow: visible;
&.books, &.books,
&.collected, &.collected,
@ -173,18 +174,13 @@ a {
a:focus, a:focus,
a:focus-within a:focus-within
a:focus > svg, a:has(svg):focus svg,
a:focus-within > svg { a:has(svg):focus-within svg {
outline: var(--outline-default); outline: var(--outline-default);
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);
text-decoration: none; text-decoration: none;
} }
a:has(svg):focus,
a:has(svg):focus-within {
outline: none;
}
a.icon-link:focus, a.icon-link:focus,
a.icon-link:focus-within { a.icon-link:focus-within {
outline: var(--outline-default); outline: var(--outline-default);

View file

@ -39,6 +39,16 @@
} }
} }
& a:has(img) {
display: flex;
}
& a:focus img,
& a:focus-within img {
outline: var(----outline-default);
border: 0;
}
& img { & img {
border: var(--border-default); border: var(--border-default);
border-radius: var(--border-radius-slight); border-radius: var(--border-radius-slight);

View file

@ -51,10 +51,6 @@
& p { & p {
margin: 0; margin: 0;
overflow: hidden;
max-width: 100%;
text-overflow: ellipsis;
width: fit-content;
} }
& .description { & .description {
@ -87,13 +83,12 @@
flex-direction: column; flex-direction: column;
gap: var(--spacing-sm); gap: var(--spacing-sm);
& p { & p.title {
&.title {
font-size: var(--font-size-xl); font-size: var(--font-size-xl);
line-height: var(--line-height-md); line-height: var(--line-height-md);
} }
&.sub-meta { & p.sub-meta {
font-size: var(--font-size-sm); font-size: var(--font-size-sm);
& svg { & svg {
@ -102,12 +97,11 @@
} }
} }
&.title, & p.title,
&.sub-meta { & p.sub-meta {
margin: 0; margin: 0;
} }
} }
}
} }
.book-focus { .book-focus {

View file

@ -3,6 +3,7 @@
{%- capture alt -%}{{ item.title | escape }} by {{ item.artist }}{%- endcapture -%} {%- capture alt -%}{{ item.title | escape }} by {{ item.artist }}{%- endcapture -%}
<div class="item"> <div class="item">
<div class="meta"> <div class="meta">
<a href="{{ item.url }}">
<img <img
srcset=" srcset="
https://cdn.coryd.dev{{ item.image }}?class=w50&type=webp 50w, https://cdn.coryd.dev{{ item.image }}?class=w50&type=webp 50w,
@ -16,6 +17,7 @@
width="64" width="64"
height="64" height="64"
/> />
</a>
<div class="meta-text"> <div class="meta-text">
<div class="title"> <div class="title">
<a href="{{ item.url }}">{{ item.title }}</a> <a href="{{ item.url }}">{{ item.title }}</a>

View file

@ -11,9 +11,9 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
{% for post in pagination.items %} {% for post in pagination.items %}
<article> <article>
<time datetime="{{ post.date }}">{{ post.date | date: "%B %e, %Y" }}</time> <time datetime="{{ post.date }}">{{ post.date | date: "%B %e, %Y" }}</time>
<a href="{{ post.slug }}"> <h3>
<h3>{{ post.title }}</h3> <a href="{{ post.slug }}">{{ post.title }}</a>
</a> </h3>
<p>{{ post.description }}</p> <p>{{ post.description }}</p>
</article> </article>
{% endfor %} {% endfor %}