diff --git a/package-lock.json b/package-lock.json index 69c2753f..8d8e7d79 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.5.2", + "version": "24.5.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.5.2", + "version": "24.5.3", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 26c358b4..afc72b36 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.5.2", + "version": "24.5.3", "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 86c835a6..6c99318a 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -16,7 +16,7 @@ html { body { font-size: var(--font-size-base); - line-height: 2; + line-height: var(--line-height-default); } ::-moz-selection { @@ -49,7 +49,7 @@ body::-webkit-scrollbar { } p { - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); &.books, &.concerts, @@ -78,7 +78,6 @@ p { & a { text-decoration: underline; - text-decoration-line: underline; text-decoration-style: dashed; text-underline-offset: var(--sizing-xs); } @@ -89,7 +88,7 @@ blockquote { color: var(--gray-dark); padding-left: var(--sizing-lg); border-left: var(--sizing-xs) solid var(--gray-dark); - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); } code { @@ -166,12 +165,19 @@ a { } a:focus, -a:focus-within { +a:focus-within +a:focus > svg, +a:focus-within > svg { outline: var(--outline-default); border-radius: var(--border-radius-slight); text-decoration: none; } +a:has(svg):focus, +a:has(svg):focus-within { + outline: none; +} + a:hover, a:focus, a:active, @@ -211,8 +217,8 @@ a:active, /* headers */ h1, h2, h3, h4, h5, h6 { font-weight: var(--font-weight-bold); - line-height: 1.5; - margin: var(--sizing-base) 0; + line-height: var(--line-height-reduced); + margin: var(--margin-top-base-horizontal-zero); } h1 { font-size: var(--font-size-2xl); } @@ -245,7 +251,7 @@ hr { height: 1px; background-color: var(--gray-light); border: 0; - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); & + .section-header { margin-top: 0; @@ -459,7 +465,7 @@ article { /* lists */ ul, ol { list-style-position: inside; - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); padding-left: var(--sizing-base); & li { diff --git a/src/assets/styles/components/media-grid.css b/src/assets/styles/components/media-grid.css index 83b22cde..b04d45b1 100644 --- a/src/assets/styles/components/media-grid.css +++ b/src/assets/styles/components/media-grid.css @@ -71,7 +71,7 @@ & a:focus .item::after, & a:focus-within .item::after { border: 0; - outline: var(----outline-default); + outline: var(--outline-default); } & .meta-text { @@ -86,8 +86,8 @@ & .subheader { color: var(--color-lightest); font-size: var(--font-size-sm); - line-height: 1.5; - text-shadow: var(--black) 0px 0px 10px; + line-height: var(--line-height-reduced); + text-shadow: var(--text-shadow-default); } & .header { diff --git a/src/assets/styles/components/music-chart.css b/src/assets/styles/components/music-chart.css index 5af1c2eb..3aa4138f 100644 --- a/src/assets/styles/components/music-chart.css +++ b/src/assets/styles/components/music-chart.css @@ -58,7 +58,7 @@ & .title { font-weight: var(--font-weight-bold); - line-height: 1.5; + line-height: var(--line-height-reduced); & a { outline: none; @@ -82,7 +82,7 @@ & .subtext, & .subtext p, & .timestamp { - line-height: 1.5; + line-height: var(--line-height-reduced); } & .subtext, diff --git a/src/assets/styles/components/text-toggle.css b/src/assets/styles/components/text-toggle.css index d4b9ea03..558be6d7 100644 --- a/src/assets/styles/components/text-toggle.css +++ b/src/assets/styles/components/text-toggle.css @@ -3,7 +3,7 @@ position: relative; height: 500px; overflow: hidden; - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); & p:first-of-type { margin-top: 0; diff --git a/src/assets/styles/defaults/vars.css b/src/assets/styles/defaults/vars.css index cf9c5c66..237552f5 100644 --- a/src/assets/styles/defaults/vars.css +++ b/src/assets/styles/defaults/vars.css @@ -92,6 +92,9 @@ --font-weight-bold: 600; --font-weight-extrabold: 800; + --line-height-reduced: 1.5; + --line-height-default: 2; + /* spacing */ --sizing-xs: .25rem; --sizing-sm: .5rem; @@ -105,6 +108,8 @@ --sizing-svg-sm: 18px; --sizing-svg-base: 24px; + --margin-top-base-horizontal-zero: var(--sizing-base) 0; + /* radii */ --border-radius-slight: var(--sizing-xs); --border-radius-full: 9999px; @@ -126,6 +131,7 @@ /* shadows */ --box-shadow-media: inset 0 -85px 60px -60px var(--black); --box-shadow-text-toggle: inset 0 -120px 60px -60px var(--background-color); + --text-shadow-default: rgba(0, 0, 0, 0.7) 0px 0px 10px; /* input accent color */ accent-color: var(--accent-color); diff --git a/src/assets/styles/feed.xsl b/src/assets/styles/feed.xsl index 913b0361..b1c884fb 100644 --- a/src/assets/styles/feed.xsl +++ b/src/assets/styles/feed.xsl @@ -18,6 +18,8 @@ --sizing-2xl: 2rem; --sizing-3xl: 2.25rem; + --margin-top-base-horizontal-zero: var(--sizing-base) 0; + --border-radius-slight: var(--sizing-xs); --border-radius-full: 9999px; @@ -79,6 +81,9 @@ --font-weight-bold: 600; --font-weight-extrabold: 800; + --line-height-reduced: 1.5; + --line-height-default: 2; + /* outline */ --outline-default: var(--outline-default); @@ -132,7 +137,7 @@ font-family: var(--font-mono); font-size: var(--font-size-base); font-weight: var(--font-weight-base); - line-height: 2; + line-height: var(--line-height-default); letter-spacing: -.05rem; word-spacing: -.125rem; color: var(--text-color); @@ -194,7 +199,7 @@ h1, h2, h3 { font-weight: var(--font-weight-bold); - line-height: 1.5; + line-height: var(--line-height-reduced); margin-bottom: var(--sizing-base); } @@ -204,12 +209,19 @@ } a:focus, - a:focus-within { + a:focus-within + a:focus > svg, + a:focus-within > svg { outline: var(--outline-default); border-radius: var(--border-radius-slight); text-decoration: none; } + a:has(svg):focus, + a:has(svg):focus-within { + outline: none; + } + a:hover, a:focus, a:active { @@ -226,7 +238,7 @@ } .item { - padding: var(--sizing-base) 0; + padding: var(--margin-top-base-horizontal-zero); border-bottom: 1px solid var(--border-color); } @@ -262,7 +274,6 @@ p a { text-decoration: underline; - text-decoration-line: underline; text-decoration-style: dashed; text-underline-offset: var(--sizing-xs); } @@ -282,14 +293,14 @@ color: var(--gray-dark); padding-left: var(--sizing-lg); border-left: var(--sizing-xs) solid var(--gray-dark); - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); } hr { height: 1px; background-color: var(--border-color); border: 0; - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); } .highlight-text { @@ -301,7 +312,7 @@ pre { padding: var(--sizing-base); overflow: auto; - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); font-size: var(--body-font-size); } diff --git a/src/assets/styles/pages/about.css b/src/assets/styles/pages/about.css index 31d000d9..1b3e18cb 100644 --- a/src/assets/styles/pages/about.css +++ b/src/assets/styles/pages/about.css @@ -6,12 +6,9 @@ margin-bottom: var(--sizing-sm); width: 100%; justify-content: center; - overflow: hidden; & .interior { display: flex; - justify-content: center; - overflow: hidden; & img { width: var(--avatar-size); diff --git a/src/assets/styles/pages/blogroll.css b/src/assets/styles/pages/blogroll.css index 53de26d2..795e4cf0 100644 --- a/src/assets/styles/pages/blogroll.css +++ b/src/assets/styles/pages/blogroll.css @@ -1,16 +1,4 @@ .blog-roll-icons { display: flex; flex-direction: row; - - & a { - display: flex; - align-items: center; - outline: none; - - &:focus svg, - &:focus-within svg { - outline: var(--outline-default); - border-radius: var(--border-radius-slight); - } - } } \ No newline at end of file diff --git a/src/assets/styles/pages/books.css b/src/assets/styles/pages/books.css index 91c6c195..5c8bf161 100644 --- a/src/assets/styles/pages/books.css +++ b/src/assets/styles/pages/books.css @@ -69,7 +69,7 @@ & p { &.title { font-size: var(--font-size-xl); - line-height: 1.5; + line-height: var(--line-height-reduced); } &.sub-meta { diff --git a/src/assets/styles/pages/music.css b/src/assets/styles/pages/music.css index 7fa1d799..13d597d5 100644 --- a/src/assets/styles/pages/music.css +++ b/src/assets/styles/pages/music.css @@ -35,7 +35,7 @@ &.title { font-size: var(--font-size-xl); - line-height: 1.5; + line-height: var(--line-height-reduced); } &.sub-meta { diff --git a/src/assets/styles/pages/watching.css b/src/assets/styles/pages/watching.css index ca8681ec..b6576581 100644 --- a/src/assets/styles/pages/watching.css +++ b/src/assets/styles/pages/watching.css @@ -26,7 +26,7 @@ a:active > .watching.hero::after { border-radius: var(--border-radius-slight); } - & div.meta-text { + & .meta-text { color: white; position: absolute; left: var(--sizing-sm); @@ -47,8 +47,8 @@ a:active > .watching.hero::after { & .header, & .subheader { - line-height: 1.5; - text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px; + line-height: var(--line-height-reduced); + text-shadow: var(--text-shadow-default); } } @@ -88,7 +88,7 @@ a:active > .watching.hero::after { & a:focus .item::after, & a:focus-within .item::after { border: 0; - outline: var(----outline-default); + outline: var(--outline-default); } & div { @@ -109,8 +109,8 @@ a:active > .watching.hero::after { & .rating { color: var(--color-lightest); font-size: var(--font-size-sm); - line-height: 1.5; - text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px; + line-height: var(--line-height-reduced); + text-shadow: var(--text-shadow-default); } & .header { @@ -164,14 +164,14 @@ a:active > .watching.hero::after { display: flex; flex-direction: column; gap: var(--sizing-sm); - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); & p { margin: 0; &.title { font-size: var(--font-size-xl); - line-height: 1.5; + line-height: var(--line-height-reduced); } &.sub-meta { diff --git a/src/assets/styles/pages/webrings.css b/src/assets/styles/pages/webrings.css index d97b5460..6a3af2a9 100644 --- a/src/assets/styles/pages/webrings.css +++ b/src/assets/styles/pages/webrings.css @@ -1,5 +1,5 @@ .webring-wrapper { - margin: var(--sizing-base) 0; + margin: var(--margin-top-base-horizontal-zero); & .webring-navigation { gap: var(--sizing-sm); diff --git a/src/assets/styles/plugins/prism.css b/src/assets/styles/plugins/prism.css index 0826b034..aa3d0a49 100644 --- a/src/assets/styles/plugins/prism.css +++ b/src/assets/styles/plugins/prism.css @@ -10,7 +10,7 @@ pre[class*="language-"] { word-spacing: normal; word-break: normal; word-wrap: normal; - line-height: 1.5; + line-height: var(--line-height-reduced); tab-size: 2; hyphens: none; } diff --git a/src/assets/styles/reset.css b/src/assets/styles/reset.css index 253f66b9..65ac757d 100644 --- a/src/assets/styles/reset.css +++ b/src/assets/styles/reset.css @@ -14,7 +14,7 @@ - improve text rendering */ body { - line-height: 1.5; + line-height: var(--line-height-reduced); -webkit-font-smoothing: antialiased; }