chore: split out styles + only load where needed

This commit is contained in:
Cory Dransfeldt 2024-01-02 13:49:47 -08:00
parent f21e8b18ae
commit 67fcfdb051
No known key found for this signature in database
26 changed files with 539 additions and 454 deletions

View file

@ -1,6 +1,12 @@
---
layout: default
---
{% capture css %}
{% render "../assets/styles/pages/now.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
{{ content }}
{% render "partials/now/media-grid.liquid", data:artists, icon: "microphone-2", title: "Artists", shape: "square", count: 8, loading: 'eager' %}
{% render "partials/now/media-grid.liquid", data:albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}

View file

@ -1,4 +1,10 @@
{% if data.size > 0 %}
{% capture css %}
{% render "../../../assets/styles/widgets/media-grid.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
{% assign media = data | normalizeMedia %}
<h2 class="now__section--header flex--centered">
{% tablericon icon title %}

View file

@ -1,4 +1,10 @@
{% if percentage %}
{% capture css %}
{% render "../../../assets/styles/widgets/media-grid.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="progress-bar__wrapper">
<div style="width:{{ percentage }}" class="progress-bar shadow-none flex flex-col whitespace-nowrap justify-center bg-blue-600 dark:bg-blue-400"></div>
</div>

View file

@ -1,3 +1,9 @@
{% capture css %}
{% render "../../assets/styles/widgets/paginator.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<nav class="pagination flex--centered">
{% if pagination.href.previous %}
<a href="{{ pagination.href.previous }}">

View file

@ -1,3 +1,9 @@
{% capture css %}
{% render "../../assets/styles/widgets/popular-posts.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
{% assign posts = posts | getPopularPosts: analytics %}
<div class="popular-posts">
<h2 class="flex--centered">

View file

@ -1,5 +1,11 @@
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
{% if mentions %}
{% capture css %}
{% render "../../../assets/styles/widgets/webmentions.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="webmentions">
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'repost-of' %}
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'like-of' %}

View file

@ -5,6 +5,7 @@ schema: blog
{% render "partials/header.liquid", meta: meta, page: page, nav: nav %}
{% capture css %}
{% render "../assets/styles/plugins/prism.css" %}
{% render "../assets/styles/pages/post.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}

View file

@ -34,6 +34,11 @@ blockquote {
stroke: var(--black);
}
:is(h1, h2, h3, h4, h5, h6, .pill--button) > svg {
margin-right: .25rem;
stroke-width: var(--stroke-width-bold) !important;
}
/* links */
a {
color: var(--blue-600);
@ -64,8 +69,7 @@ a svg {
}
strong,
.pill--button,
.media__grid .item__meta-text .header {
.pill--button {
font-weight: 700;
}
@ -91,8 +95,7 @@ hr {
border: 0;
}
hr.large__spacing,
hr.footnotes-sep {
hr.large__spacing {
margin: 2.5rem 0;
}
@ -195,23 +198,6 @@ article {
margin-bottom: 1rem;
}
.pagination button {
background: none;
padding-left: 0;
padding-right: 0;
}
.pagination button > svg {
cursor: pointer;
}
.pagination button.disabled > svg {
opacity: .5;
cursor: not-allowed;
stroke: var(--black);
stroke-width: var(--stroke-width-default);
}
footer nav:first-child {
gap: 0.5rem;
margin-top: 2rem;
@ -264,10 +250,6 @@ code {
flex-direction: row;
}
.pill--button > svg {
stroke: var(--white);
}
.pill--button.pill--button__small {
padding: .25rem .5rem;
margin-right: .5rem;
@ -283,10 +265,14 @@ code {
background-color: var(--blue-800) !important;
}
.pill--button > svg,
.pill--button svg:hover,
.pill--button svg:active,
.pill--button svg:focus {
stroke: var(--white);
.pill--button svg:focus,
.pill--button:hover svg,
.pill--button:active svg,
.pill--button:focus svg {
stroke: var(--white) !important;
}
/* articles */
@ -300,10 +286,6 @@ article time {
line-height: var(--line-height-sm);
}
.eleventy-plugin-youtube-embed {
margin-bottom: 1rem;
}
/* icons */
svg {
stroke-width: var(--stroke-width-default);
@ -328,15 +310,6 @@ li {
margin-bottom: .5rem;
}
.footnotes-list {
margin-bottom: 0 !important;
padding-left: 0 !important;
}
.footnotes-list li:last-child {
margin-bottom: 0;
}
/* images */
.image__banner {
border: 1px solid var(--blue-600);
@ -353,148 +326,6 @@ li {
height: auto;
}
/* about */
.avatar__wrapper {
width: 100%;
margin-bottom: 1.5rem;
}
.avatar__wrapper .avatar__wrapper--interior {
width: 16rem;
height: 16rem;
border: 1px solid var(--blue-600);
border-radius: var(--rounded-full);
display: flex;
padding: 1rem;
background-color: var(--white);
}
.avatar__wrapper .avatar__wrapper--interior > * {
width: 100%;
height: 100%;
}
/* contact */
.contact__wrapper textarea {
height: 10rem;
resize: none;
}
.contact__wrapper .column.contact__description {
margin-bottom: 1.5rem;
}
.contact__wrapper .column.contact__description p:first-child {
margin-top: 0;
}
/* now */
.now__section--text {
padding-left: 1rem;
}
.now__section--text p {
margin-top: .25rem;
margin-bottom: .25rem;
}
.now__section--text p > svg {
vertical-align: middle;
height: 1.25rem;
width: 1.25rem;
}
.now__section--header,
article .now__section--header {
margin-top: 2rem;
margin-bottom: 1rem;
}
.now__section--header:first-of-type {
margin-top: 0;
}
.now__explainer {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
padding-top: 1rem;
}
.media__grid {
display: grid;
gap: .5rem;
}
.media__grid.square {
grid-template-columns: repeat(2,minmax(0,1fr));
}
.media__grid.vertical {
grid-template-columns: repeat(3,minmax(0,1fr));
}
.media__grid.vertical .item__wrapper {
max-width: 193px;
}
.media__grid .item__wrapper {
position: relative;
height: 100%;
width: 100%;
border: 1px solid var(--blue-600);
border-radius: var(--rounded-lg);
}
.media__grid .item__wrapper:hover {
border-color: var(--blue-800)
}
.media__grid .item__cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: var(--rounded-sm);
}
.media__grid .item__cover.gradient {
background-image: linear-gradient(180deg,transparent 0,rgba(0,0,0,.15) 70%,rgba(0,0,0,.75));
}
.media__grid .item__meta-text {
position: absolute;
padding: 0 .375rem;
width: 90%;
bottom: .375rem;
}
.media__grid .item__meta-text .header,
.media__grid .item__meta-text .subheader {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
overflow: visible;
display: -webkit-box;
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.media__grid .item__image,
.media__grid .item__image > * {
width: 100%;
height: 100%;
}
/* 404 */
.four-oh-four__wrapper .image__banner {
margin-bottom: 1.25rem;
}
.four-oh-four__wrapper a {
margin-bottom: 1.25rem;
}
/* pages */
.page__header {
font-size: var(--font-size-2xl);
@ -502,150 +333,6 @@ article .now__section--header {
margin-top: 0;
}
/* widgets */
.popular-posts h2 {
margin-top: 2rem;
margin-bottom: 1rem;
}
.webmentions {
border-top: 1px solid var(--gray-200);
border-bottom: 1px solid var(--gray-200);
margin-top: 1.5rem;
margin-bottom: 3.25rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
.webmentions .interaction.comments {
flex-direction: column;
}
.webmentions .interaction {
cursor: pointer;
margin-top: 1rem;
margin-bottom: 1.5rem;
}
.webmentions .interaction .comment__wrapper {
width: 100%;
padding-bottom: 1rem;
}
.webmentions .interaction .comment__wrapper:last-child {
padding-bottom: 0;
}
.webmentions .interaction .avatar__wrapper:hover,
.webmentions .interaction .comment__wrapper:hover .avatar__wrapper {
border-color: var(--blue-800);
}
.webmentions .interaction .comment__wrapper--interior .comment {
margin-left: .75rem;
}
.webmentions .interaction .comment__wrapper--interior .comment a {
color: var(--black);
text-decoration: none;
}
.webmentions .interaction .comment__wrapper--interior .comment p {
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
margin: 0;
}
.webmentions .interaction .comment__wrapper--interior .comment time {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
margin-top: .25rem;
}
.webmentions .interaction ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 0 0 0 .75rem;
padding: 0;
list-style: none;
}
.webmentions .interaction li {
margin-left: -.75rem;
height: 3.5rem;
}
.webmentions .interaction .avatar__wrapper {
background-color: var(--black);
width: 3.5rem;
height: 3.5rem;
margin-bottom: 0;
border-radius: var(--rounded-full);
border: 4px solid var(--white);
}
.webmentions .interaction .avatar__wrapper .avatar__wrapper-image > * {
width: 100%;
height: 100%;
border-radius: var(--rounded-full);
}
.webmentions .interaction .avatar__wrapper > picture {
align-items: center;
}
.progress-bar__wrapper {
display: flex;
background-color: rgba(217, 222, 228, .6);
border-radius: var(--rounded-lg);
height: 1rem;
width: 100%;
margin-top: .25rem;
margin-bottom: .25rem;
}
.progress-bar {
white-space: nowrap;
background-color: var(--blue-600);
}
.webring__wrapper {
margin-top: 3rem;
margin-bottom: 2.5rem;
}
.footnotes {
padding-bottom: 1.5rem;
}
/* inputs */
input[type="text"],
input[type="email"],
textarea {
color: var(--black);
background-color: var(--white);
width: 100%;
border: 1px solid var(--blue-600);
padding: .5rem;
margin-bottom: 1.5rem;
font-weight: 400 !important;
font-size: var(--font-size-base);
line-height: var(--line-height-base);
}
input[type="text"],
input[type="email"],
textarea {
outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
border: 1px solid var(--blue-800);
}
/* utilities */
.hidden {
display: none !important;
@ -668,9 +355,7 @@ textarea:focus {
/* shared styles */
.main__title,
.main__wrapper,
.contact__wrapper,
.webmentions .interaction .avatar__wrapper > picture,
.progress-bar {
.contact__wrapper {
display: flex;
flex-direction: column;
}
@ -680,63 +365,25 @@ code,
.pill--button,
.pill--button:hover,
.pill--button:active,
.pill--button:focus,
.media__grid .item__meta-text .header,
.media__grid .item__meta-text .subheader {
.pill--button:focus {
color: var(--white);
}
a,
.webmentions .interaction .avatar__wrapper,
.media__grid .item__wrapper,
.pill--button,
input[type="text"],
input[type="email"],
textarea {
.pill--button {
transition-timing-function: var(--ease-in-out);
transition-duration: 300ms;
}
.webmentions .interaction .avatar__wrapper,
.media__grid .item__wrapper,
input[type="text"],
input[type="email"],
textarea {
transition-property: border-color;
}
.pagination,
.webmentions .interaction .comment__wrapper--interior {
justify-content: space-between;
}
.now__section--text p > svg,
.footnote-item > p {
display: inline;
}
.avatar__wrapper,
.avatar__wrapper .avatar__wrapper--interior,
.pill--button,
.progress-bar,
.webring__wrapper > .webring__centered,
footer nav {
justify-content: center;
}
.image__banner,
.avatar__wrapper .avatar__wrapper--interior,
.media__grid .item__wrapper,
.webmentions .interaction .avatar__wrapper,
.progress-bar__wrapper {
.image__banner {
overflow: hidden;
}
:is(h1, h2, h3, h4, h5, h6, .pill--button) > svg {
margin-right: .25rem;
stroke-width: var(--stroke-width-bold) !important;
}
/* screens: md */
@media screen and (min-width: 768px) {
.main__title {
@ -756,11 +403,6 @@ footer nav {
font-size: var(--font-size-2xl);
}
.avatar__wrapper .avatar__wrapper--interior {
width: 24rem;
height: 24rem;
}
main {
max-width: 768px;
}
@ -778,37 +420,6 @@ footer nav {
footer nav:first-child {
gap: .75rem;
}
/* now */
.now__section--text {
padding-left: 2rem;
}
.media__grid.square {
grid-template-columns: repeat(4,minmax(0,1fr));
}
.media__grid.vertical {
grid-template-columns: repeat(6,minmax(0,1fr));
}
.media__grid.vertical .item__wrapper {
max-width: 121px;
}
/* contact */
.contact__wrapper {
flex-direction: row;
}
.contact__wrapper .column {
width: 50%;
}
.contact__wrapper .column.contact__description {
padding-right: 1.5rem;
margin-bottom: 0;
}
}
/* dark theme */
@ -842,10 +453,7 @@ footer nav {
stroke: var(--blue-400);
}
:is(.main__title, footer nav:last-child, .webmentions .interaction .comment__wrapper--interior .comment) a,
input[type="text"],
input[type="email"],
textarea {
.main__title, footer nav:last-child a {
color: var(--white);
}
@ -892,13 +500,6 @@ footer nav {
stroke: var(--blue-400)
}
/* inputs */
input[type="text"],
input[type="email"],
textarea {
background-color: var(--black);
}
/* buttons */
.pill--button:hover,
.pill--button:active,
@ -906,47 +507,13 @@ footer nav {
background-color: var(--blue-200);
}
.pagination button.disabled > svg {
stroke: var(--white);
}
/* now */
.media__grid .item__wrapper {
border-color: var(--blue-400);
}
/* images */
.image__banner {
border-color: var(--blue-400);
}
/* widgets */
.webmentions {
border-color: var(--gray-900);
}
.webmentions .interaction .avatar__wrapper {
background-color: var(--white);
border-color: var(--black);
}
/* shared styles */
.media__grid .item__wrapper:hover,
.media__grid .item__wrapper:focus,
.media__grid .item__wrapper:active,
.webmentions .interaction .avatar__wrapper:hover,
.webmentions .interaction .avatar__wrapper:focus,
.webmentions .interaction .avatar__wrapper:active,
.webmentions .interaction .comment__wrapper:hover .avatar__wrapper,
.webmentions .interaction .comment__wrapper:focus .avatar__wrapper
.webmentions .interaction .comment__wrapper:active .avatar__wrapper {
border-color: var(--blue-200);
}
.highlight-text,
.progress-bar,
.pill--button,
.post-graph__progress {
.pill--button {
background-color: var(--blue-400);
}
}

View file

@ -0,0 +1,7 @@
.four-oh-four__wrapper .image__banner {
margin-bottom: 1.25rem;
}
.four-oh-four__wrapper a {
margin-bottom: 1.25rem;
}

View file

@ -0,0 +1,32 @@
.avatar__wrapper {
width: 100%;
margin-bottom: 1.5rem;
}
.avatar__wrapper .avatar__wrapper--interior {
width: 16rem;
height: 16rem;
border: 1px solid var(--blue-600);
border-radius: var(--rounded-full);
display: flex;
padding: 1rem;
background-color: var(--white);
}
.avatar__wrapper,
.avatar__wrapper .avatar__wrapper--interior {
justify-content: center;
overflow: hidden;
}
.avatar__wrapper .avatar__wrapper--interior > * {
width: 100%;
height: 100%;
}
@media screen and (min-width: 768px) {
.avatar__wrapper .avatar__wrapper--interior {
width: 24rem;
height: 24rem;
}
}

View file

@ -0,0 +1,28 @@
/* contact */
.contact__wrapper textarea {
height: 10rem;
resize: none;
}
.contact__wrapper .column.contact__description {
margin-bottom: 1.5rem;
}
.contact__wrapper .column.contact__description p:first-child {
margin-top: 0;
}
@media screen and (min-width: 768px) {
.contact__wrapper {
flex-direction: row;
}
.contact__wrapper .column {
width: 50%;
}
.contact__wrapper .column.contact__description {
padding-right: 1.5rem;
margin-bottom: 0;
}
}

View file

@ -0,0 +1,37 @@
/* now */
.now__section--text {
padding-left: 1rem;
}
.now__section--text p {
margin-top: .25rem;
margin-bottom: .25rem;
}
.now__section--text p > svg {
display: inline;
vertical-align: middle;
height: 1.25rem;
width: 1.25rem;
}
.now__section--header {
margin-top: 2rem;
margin-bottom: 1rem;
}
.now__section--header:first-of-type {
margin-top: 0;
}
.now__explainer {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
padding-top: 1rem;
}
@media screen and (min-width: 768px) {
.now__section--text {
padding-left: 2rem;
}
}

View file

@ -0,0 +1,26 @@
/* embeds */
.eleventy-plugin-youtube-embed {
margin-bottom: 1rem;
}
/* footnotes */
hr.footnotes-sep {
margin: 2.5rem 0;
}
.footnotes-list {
margin-bottom: 0 !important;
padding-left: 0 !important;
}
.footnotes-list li:last-child {
margin-bottom: 0;
}
.footnotes {
padding-bottom: 1.5rem;
}
.footnote-item > p {
display: inline;
}

View file

@ -0,0 +1,8 @@
.webring__wrapper {
margin-top: 3rem;
margin-bottom: 2.5rem;
}
.webring__wrapper > .webring__centered {
justify-content: center;
}

View file

@ -0,0 +1,37 @@
input[type="text"],
input[type="email"],
textarea {
color: var(--black);
background-color: var(--white);
width: 100%;
border: 1px solid var(--blue-600);
padding: .5rem;
margin-bottom: 1.5rem;
font-weight: 400 !important;
font-size: var(--font-size-base);
line-height: var(--line-height-base);
transition-property: border-color;
transition-timing-function: var(--ease-in-out);
transition-duration: 300ms;
}
input[type="text"],
input[type="email"],
textarea {
outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
border: 1px solid var(--blue-800);
}
@media (prefers-color-scheme: dark) {
input[type="text"],
input[type="email"],
textarea {
color: var(--white);
background-color: var(--black);
}
}

View file

@ -0,0 +1,101 @@
.now__section--header {
margin-top: 2rem;
margin-bottom: 1rem;
}
.media__grid {
display: grid;
gap: .5rem;
}
.media__grid.square {
grid-template-columns: repeat(2,minmax(0,1fr));
}
.media__grid.vertical {
grid-template-columns: repeat(3,minmax(0,1fr));
}
.media__grid.vertical .item__wrapper {
max-width: 193px;
}
.media__grid .item__wrapper {
position: relative;
height: 100%;
width: 100%;
border: 1px solid var(--blue-600);
border-radius: var(--rounded-lg);
overflow: hidden;
transition-property: border-color;
transition-timing-function: var(--ease-in-out);
transition-duration: 300ms;
}
.media__grid .item__wrapper:hover {
border-color: var(--blue-800)
}
.media__grid .item__cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: var(--rounded-sm);
}
.media__grid .item__cover.gradient {
background-image: linear-gradient(180deg,transparent 0,rgba(0,0,0,.15) 70%,rgba(0,0,0,.75));
}
.media__grid .item__meta-text {
position: absolute;
padding: 0 .375rem;
width: 90%;
bottom: .375rem;
}
.media__grid .item__meta-text .header,
.media__grid .item__meta-text .subheader {
color: var(--white);
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
overflow: visible;
display: -webkit-box;
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.media__grid .item__image,
.media__grid .item__image > * {
width: 100%;
height: 100%;
}
@media screen and (min-width: 768px) {
.media__grid.square {
grid-template-columns: repeat(4,minmax(0,1fr));
}
.media__grid.vertical {
grid-template-columns: repeat(6,minmax(0,1fr));
}
.media__grid.vertical .item__wrapper {
max-width: 121px;
}
}
@media (prefers-color-scheme: dark) {
.media__grid .item__wrapper {
border-color: var(--blue-400);
}
.media__grid .item__wrapper:hover,
.media__grid .item__wrapper:focus,
.media__grid .item__wrapper:active {
border-color: var(--blue-200);
}
}

View file

@ -0,0 +1,26 @@
.pagination {
justify-content: space-between;
}
.pagination button {
background: none;
padding-left: 0;
padding-right: 0;
}
.pagination button > svg {
cursor: pointer;
}
.pagination button.disabled > svg {
opacity: .5;
cursor: not-allowed;
stroke: var(--black);
stroke-width: var(--stroke-width-default);
}
@media (prefers-color-scheme: dark) {
.pagination button.disabled > svg {
stroke: var(--white);
}
}

View file

@ -0,0 +1,4 @@
.popular-posts h2 {
margin-top: 2rem;
margin-bottom: 1rem;
}

View file

@ -24,3 +24,9 @@
.post-graph__data {
margin-left: .625rem;
}
@media (prefers-color-scheme: dark) {
.post-graph__progress {
background-color: var(--blue-400);
}
}

View file

@ -0,0 +1,24 @@
.progress-bar__wrapper {
display: flex;
background-color: rgba(217, 222, 228, .6);
border-radius: var(--rounded-lg);
overflow: hidden;
height: 1rem;
width: 100%;
margin-top: .25rem;
margin-bottom: .25rem;
}
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
white-space: nowrap;
background-color: var(--blue-600);
}
@media (prefers-color-scheme: dark) {
.progress-bar {
background-color: var(--blue-400);
}
}

View file

@ -0,0 +1,120 @@
.webmentions {
border-top: 1px solid var(--gray-200);
border-bottom: 1px solid var(--gray-200);
margin-top: 1.5rem;
margin-bottom: 3.25rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
.webmentions .interaction.comments {
flex-direction: column;
}
.webmentions .interaction {
cursor: pointer;
margin-top: 1rem;
margin-bottom: 1.5rem;
}
.webmentions .interaction .comment__wrapper {
width: 100%;
padding-bottom: 1rem;
}
.webmentions .interaction .comment__wrapper:last-child {
padding-bottom: 0;
}
.webmentions .interaction .avatar__wrapper:hover,
.webmentions .interaction .comment__wrapper:hover .avatar__wrapper {
border-color: var(--blue-800);
}
.webmentions .interaction .comment__wrapper--interior {
justify-content: space-between;
}
.webmentions .interaction .comment__wrapper--interior .comment {
margin-left: .75rem;
}
.webmentions .interaction .comment__wrapper--interior .comment a {
color: var(--black);
text-decoration: none;
}
.webmentions .interaction .comment__wrapper--interior .comment p {
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
margin: 0;
}
.webmentions .interaction .comment__wrapper--interior .comment time {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
margin-top: .25rem;
}
.webmentions .interaction ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 0 0 0 .75rem;
padding: 0;
list-style: none;
}
.webmentions .interaction li {
margin-left: -.75rem;
height: 3.5rem;
}
.webmentions .interaction .avatar__wrapper {
background-color: var(--black);
width: 3.5rem;
height: 3.5rem;
margin-bottom: 0;
overflow: hidden;
border-radius: var(--rounded-full);
border: 4px solid var(--white);
transition-property: border-color;
transition-timing-function: var(--ease-in-out);
transition-duration: 300ms;
}
.webmentions .interaction .avatar__wrapper .avatar__wrapper-image > * {
width: 100%;
height: 100%;
border-radius: var(--rounded-full);
}
.webmentions .interaction .avatar__wrapper > picture {
display: flex;
flex-direction: column;
align-items: center;
}
@media (prefers-color-scheme: dark) {
.webmentions .interaction .comment__wrapper--interior .comment a {
color: var(--white);
}
.webmentions {
border-color: var(--gray-900);
}
.webmentions .interaction .avatar__wrapper {
background-color: var(--white);
border-color: var(--black);
}
.webmentions .interaction .avatar__wrapper:hover,
.webmentions .interaction .avatar__wrapper:focus,
.webmentions .interaction .avatar__wrapper:active,
.webmentions .interaction .comment__wrapper:hover .avatar__wrapper,
.webmentions .interaction .comment__wrapper:focus .avatar__wrapper
.webmentions .interaction .comment__wrapper:active .avatar__wrapper {
border-color: var(--blue-200);
}
}

View file

@ -3,6 +3,12 @@ title: 404
layout: default
permalink: /404.html
---
{% capture css %}
{% render "../assets/styles/pages/404.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="four-oh-four__wrapper">
{% image './src/assets/img/404.jpg', title, 'image__banner' %}
<div class="text-center">

View file

@ -3,6 +3,12 @@ title: About
layout: default
permalink: /about.html
---
{% capture css %}
{% render "../assets/styles/pages/about.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="avatar__wrapper flex--centered">
<div class="avatar__wrapper--interior">
{% capture about_alt %}{{ meta.siteName }} - image by David Neal / @reverentgeek{% endcapture %}

View file

@ -4,6 +4,13 @@ layout: default
permalink: /contact.html
description: 'How to contact me.'
---
{% capture css %}
{% render "../assets/styles/widgets/forms.css" %}
{% render "../assets/styles/pages/contact.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<h2 class="page__header">{{ title }}</h2>
<div class="contact__wrapper">
<div class="column contact__description">

View file

@ -8,6 +8,7 @@ permalink: /search.html
<link href="https://coryd.dev/pagefind/pagefind-ui.css" rel="stylesheet" />
{% capture css %}
{% render "../assets/styles/widgets/pagefind.css" %}
{% render "../assets/styles/widgets/forms.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}

View file

@ -4,7 +4,12 @@ layout: default
permalink: /webrings.html
description: "Webrings are awesome! These are the ones I'm a member of."
---
{% capture css %}
{% render "../assets/styles/pages/webrings.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<h2
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-white md:text-2xl mb-2"
>