chore: split out styles + only load where needed
This commit is contained in:
parent
f21e8b18ae
commit
67fcfdb051
26 changed files with 539 additions and 454 deletions
|
@ -1,6 +1,12 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../assets/styles/pages/now.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
{{ content }}
|
{{ 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: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 %}
|
{% render "partials/now/media-grid.liquid", data:albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{% if data.size > 0 %}
|
{% if data.size > 0 %}
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../../assets/styles/widgets/media-grid.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
{% assign media = data | normalizeMedia %}
|
{% assign media = data | normalizeMedia %}
|
||||||
<h2 class="now__section--header flex--centered">
|
<h2 class="now__section--header flex--centered">
|
||||||
{% tablericon icon title %}
|
{% tablericon icon title %}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{% if percentage %}
|
{% if percentage %}
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../../assets/styles/widgets/media-grid.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
<div class="progress-bar__wrapper">
|
<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 style="width:{{ percentage }}" class="progress-bar shadow-none flex flex-col whitespace-nowrap justify-center bg-blue-600 dark:bg-blue-400"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../assets/styles/widgets/paginator.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
<nav class="pagination flex--centered">
|
<nav class="pagination flex--centered">
|
||||||
{% if pagination.href.previous %}
|
{% if pagination.href.previous %}
|
||||||
<a href="{{ pagination.href.previous }}">
|
<a href="{{ pagination.href.previous }}">
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../assets/styles/widgets/popular-posts.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
{% assign posts = posts | getPopularPosts: analytics %}
|
{% assign posts = posts | getPopularPosts: analytics %}
|
||||||
<div class="popular-posts">
|
<div class="popular-posts">
|
||||||
<h2 class="flex--centered">
|
<h2 class="flex--centered">
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
|
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
|
||||||
{% if mentions %}
|
{% if mentions %}
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../../../assets/styles/widgets/webmentions.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
<div class="webmentions">
|
<div class="webmentions">
|
||||||
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'repost-of' %}
|
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'repost-of' %}
|
||||||
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'like-of' %}
|
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'like-of' %}
|
||||||
|
|
|
@ -5,6 +5,7 @@ schema: blog
|
||||||
{% render "partials/header.liquid", meta: meta, page: page, nav: nav %}
|
{% render "partials/header.liquid", meta: meta, page: page, nav: nav %}
|
||||||
{% capture css %}
|
{% capture css %}
|
||||||
{% render "../assets/styles/plugins/prism.css" %}
|
{% render "../assets/styles/plugins/prism.css" %}
|
||||||
|
{% render "../assets/styles/pages/post.css" %}
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<style>
|
<style>
|
||||||
{{ css | cssmin }}
|
{{ css | cssmin }}
|
||||||
|
|
|
@ -34,6 +34,11 @@ blockquote {
|
||||||
stroke: var(--black);
|
stroke: var(--black);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:is(h1, h2, h3, h4, h5, h6, .pill--button) > svg {
|
||||||
|
margin-right: .25rem;
|
||||||
|
stroke-width: var(--stroke-width-bold) !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* links */
|
/* links */
|
||||||
a {
|
a {
|
||||||
color: var(--blue-600);
|
color: var(--blue-600);
|
||||||
|
@ -64,8 +69,7 @@ a svg {
|
||||||
}
|
}
|
||||||
|
|
||||||
strong,
|
strong,
|
||||||
.pill--button,
|
.pill--button {
|
||||||
.media__grid .item__meta-text .header {
|
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -91,8 +95,7 @@ hr {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr.large__spacing,
|
hr.large__spacing {
|
||||||
hr.footnotes-sep {
|
|
||||||
margin: 2.5rem 0;
|
margin: 2.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -195,23 +198,6 @@ article {
|
||||||
margin-bottom: 1rem;
|
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 {
|
footer nav:first-child {
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
|
@ -264,10 +250,6 @@ code {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pill--button > svg {
|
|
||||||
stroke: var(--white);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pill--button.pill--button__small {
|
.pill--button.pill--button__small {
|
||||||
padding: .25rem .5rem;
|
padding: .25rem .5rem;
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
|
@ -283,10 +265,14 @@ code {
|
||||||
background-color: var(--blue-800) !important;
|
background-color: var(--blue-800) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pill--button > svg,
|
||||||
.pill--button svg:hover,
|
.pill--button svg:hover,
|
||||||
.pill--button svg:active,
|
.pill--button svg:active,
|
||||||
.pill--button svg:focus {
|
.pill--button svg:focus,
|
||||||
stroke: var(--white);
|
.pill--button:hover svg,
|
||||||
|
.pill--button:active svg,
|
||||||
|
.pill--button:focus svg {
|
||||||
|
stroke: var(--white) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* articles */
|
/* articles */
|
||||||
|
@ -300,10 +286,6 @@ article time {
|
||||||
line-height: var(--line-height-sm);
|
line-height: var(--line-height-sm);
|
||||||
}
|
}
|
||||||
|
|
||||||
.eleventy-plugin-youtube-embed {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* icons */
|
/* icons */
|
||||||
svg {
|
svg {
|
||||||
stroke-width: var(--stroke-width-default);
|
stroke-width: var(--stroke-width-default);
|
||||||
|
@ -328,15 +310,6 @@ li {
|
||||||
margin-bottom: .5rem;
|
margin-bottom: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footnotes-list {
|
|
||||||
margin-bottom: 0 !important;
|
|
||||||
padding-left: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footnotes-list li:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* images */
|
/* images */
|
||||||
.image__banner {
|
.image__banner {
|
||||||
border: 1px solid var(--blue-600);
|
border: 1px solid var(--blue-600);
|
||||||
|
@ -353,148 +326,6 @@ li {
|
||||||
height: auto;
|
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 */
|
/* pages */
|
||||||
.page__header {
|
.page__header {
|
||||||
font-size: var(--font-size-2xl);
|
font-size: var(--font-size-2xl);
|
||||||
|
@ -502,150 +333,6 @@ article .now__section--header {
|
||||||
margin-top: 0;
|
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 */
|
/* utilities */
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
|
@ -668,9 +355,7 @@ textarea:focus {
|
||||||
/* shared styles */
|
/* shared styles */
|
||||||
.main__title,
|
.main__title,
|
||||||
.main__wrapper,
|
.main__wrapper,
|
||||||
.contact__wrapper,
|
.contact__wrapper {
|
||||||
.webmentions .interaction .avatar__wrapper > picture,
|
|
||||||
.progress-bar {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
@ -680,63 +365,25 @@ code,
|
||||||
.pill--button,
|
.pill--button,
|
||||||
.pill--button:hover,
|
.pill--button:hover,
|
||||||
.pill--button:active,
|
.pill--button:active,
|
||||||
.pill--button:focus,
|
.pill--button:focus {
|
||||||
.media__grid .item__meta-text .header,
|
|
||||||
.media__grid .item__meta-text .subheader {
|
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
.webmentions .interaction .avatar__wrapper,
|
.pill--button {
|
||||||
.media__grid .item__wrapper,
|
|
||||||
.pill--button,
|
|
||||||
input[type="text"],
|
|
||||||
input[type="email"],
|
|
||||||
textarea {
|
|
||||||
transition-timing-function: var(--ease-in-out);
|
transition-timing-function: var(--ease-in-out);
|
||||||
transition-duration: 300ms;
|
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,
|
.pill--button,
|
||||||
.progress-bar,
|
|
||||||
.webring__wrapper > .webring__centered,
|
|
||||||
footer nav {
|
footer nav {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image__banner,
|
.image__banner {
|
||||||
.avatar__wrapper .avatar__wrapper--interior,
|
|
||||||
.media__grid .item__wrapper,
|
|
||||||
.webmentions .interaction .avatar__wrapper,
|
|
||||||
.progress-bar__wrapper {
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
:is(h1, h2, h3, h4, h5, h6, .pill--button) > svg {
|
|
||||||
margin-right: .25rem;
|
|
||||||
stroke-width: var(--stroke-width-bold) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* screens: md */
|
/* screens: md */
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.main__title {
|
.main__title {
|
||||||
|
@ -756,11 +403,6 @@ footer nav {
|
||||||
font-size: var(--font-size-2xl);
|
font-size: var(--font-size-2xl);
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar__wrapper .avatar__wrapper--interior {
|
|
||||||
width: 24rem;
|
|
||||||
height: 24rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
main {
|
||||||
max-width: 768px;
|
max-width: 768px;
|
||||||
}
|
}
|
||||||
|
@ -778,37 +420,6 @@ footer nav {
|
||||||
footer nav:first-child {
|
footer nav:first-child {
|
||||||
gap: .75rem;
|
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 */
|
/* dark theme */
|
||||||
|
@ -842,10 +453,7 @@ footer nav {
|
||||||
stroke: var(--blue-400);
|
stroke: var(--blue-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
:is(.main__title, footer nav:last-child, .webmentions .interaction .comment__wrapper--interior .comment) a,
|
.main__title, footer nav:last-child a {
|
||||||
input[type="text"],
|
|
||||||
input[type="email"],
|
|
||||||
textarea {
|
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -892,13 +500,6 @@ footer nav {
|
||||||
stroke: var(--blue-400)
|
stroke: var(--blue-400)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* inputs */
|
|
||||||
input[type="text"],
|
|
||||||
input[type="email"],
|
|
||||||
textarea {
|
|
||||||
background-color: var(--black);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* buttons */
|
/* buttons */
|
||||||
.pill--button:hover,
|
.pill--button:hover,
|
||||||
.pill--button:active,
|
.pill--button:active,
|
||||||
|
@ -906,47 +507,13 @@ footer nav {
|
||||||
background-color: var(--blue-200);
|
background-color: var(--blue-200);
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination button.disabled > svg {
|
|
||||||
stroke: var(--white);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* now */
|
|
||||||
.media__grid .item__wrapper {
|
|
||||||
border-color: var(--blue-400);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* images */
|
/* images */
|
||||||
.image__banner {
|
.image__banner {
|
||||||
border-color: var(--blue-400);
|
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,
|
.highlight-text,
|
||||||
.progress-bar,
|
.pill--button {
|
||||||
.pill--button,
|
|
||||||
.post-graph__progress {
|
|
||||||
background-color: var(--blue-400);
|
background-color: var(--blue-400);
|
||||||
}
|
}
|
||||||
}
|
}
|
7
src/assets/styles/pages/404.css
Normal file
7
src/assets/styles/pages/404.css
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.four-oh-four__wrapper .image__banner {
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.four-oh-four__wrapper a {
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
}
|
32
src/assets/styles/pages/about.css
Normal file
32
src/assets/styles/pages/about.css
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
28
src/assets/styles/pages/contact.css
Normal file
28
src/assets/styles/pages/contact.css
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
37
src/assets/styles/pages/now.css
Normal file
37
src/assets/styles/pages/now.css
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
26
src/assets/styles/pages/post.css
Normal file
26
src/assets/styles/pages/post.css
Normal 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;
|
||||||
|
}
|
8
src/assets/styles/pages/webrings.css
Normal file
8
src/assets/styles/pages/webrings.css
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
.webring__wrapper {
|
||||||
|
margin-top: 3rem;
|
||||||
|
margin-bottom: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.webring__wrapper > .webring__centered {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
37
src/assets/styles/widgets/forms.css
Normal file
37
src/assets/styles/widgets/forms.css
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
101
src/assets/styles/widgets/media-grid.css
Normal file
101
src/assets/styles/widgets/media-grid.css
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
26
src/assets/styles/widgets/paginator.css
Normal file
26
src/assets/styles/widgets/paginator.css
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
4
src/assets/styles/widgets/popular-posts.css
Normal file
4
src/assets/styles/widgets/popular-posts.css
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
.popular-posts h2 {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
|
@ -23,4 +23,10 @@
|
||||||
.post-graph__progress,
|
.post-graph__progress,
|
||||||
.post-graph__data {
|
.post-graph__data {
|
||||||
margin-left: .625rem;
|
margin-left: .625rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.post-graph__progress {
|
||||||
|
background-color: var(--blue-400);
|
||||||
|
}
|
||||||
}
|
}
|
24
src/assets/styles/widgets/progress-bar.css
Normal file
24
src/assets/styles/widgets/progress-bar.css
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
120
src/assets/styles/widgets/webmentions.css
Normal file
120
src/assets/styles/widgets/webmentions.css
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,6 +3,12 @@ title: 404
|
||||||
layout: default
|
layout: default
|
||||||
permalink: /404.html
|
permalink: /404.html
|
||||||
---
|
---
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../assets/styles/pages/404.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>
|
||||||
|
{{ css | cssmin }}
|
||||||
|
</style>
|
||||||
<div class="four-oh-four__wrapper">
|
<div class="four-oh-four__wrapper">
|
||||||
{% image './src/assets/img/404.jpg', title, 'image__banner' %}
|
{% image './src/assets/img/404.jpg', title, 'image__banner' %}
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
|
|
|
@ -3,6 +3,12 @@ title: About
|
||||||
layout: default
|
layout: default
|
||||||
permalink: /about.html
|
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 flex--centered">
|
||||||
<div class="avatar__wrapper--interior">
|
<div class="avatar__wrapper--interior">
|
||||||
{% capture about_alt %}{{ meta.siteName }} - image by David Neal / @reverentgeek{% endcapture %}
|
{% capture about_alt %}{{ meta.siteName }} - image by David Neal / @reverentgeek{% endcapture %}
|
||||||
|
|
|
@ -4,6 +4,13 @@ layout: default
|
||||||
permalink: /contact.html
|
permalink: /contact.html
|
||||||
description: 'How to contact me.'
|
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>
|
<h2 class="page__header">{{ title }}</h2>
|
||||||
<div class="contact__wrapper">
|
<div class="contact__wrapper">
|
||||||
<div class="column contact__description">
|
<div class="column contact__description">
|
||||||
|
|
|
@ -8,6 +8,7 @@ permalink: /search.html
|
||||||
<link href="https://coryd.dev/pagefind/pagefind-ui.css" rel="stylesheet" />
|
<link href="https://coryd.dev/pagefind/pagefind-ui.css" rel="stylesheet" />
|
||||||
{% capture css %}
|
{% capture css %}
|
||||||
{% render "../assets/styles/widgets/pagefind.css" %}
|
{% render "../assets/styles/widgets/pagefind.css" %}
|
||||||
|
{% render "../assets/styles/widgets/forms.css" %}
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<style>
|
<style>
|
||||||
{{ css | cssmin }}
|
{{ css | cssmin }}
|
||||||
|
|
|
@ -4,7 +4,12 @@ layout: default
|
||||||
permalink: /webrings.html
|
permalink: /webrings.html
|
||||||
description: "Webrings are awesome! These are the ones I'm a member of."
|
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
|
<h2
|
||||||
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-white md:text-2xl mb-2"
|
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-white md:text-2xl mb-2"
|
||||||
>
|
>
|
||||||
|
|
Reference in a new issue