body,
html {
color: var(--text-color);
font-family: var(--font-mono);
font-size: var(--font-size-base);
letter-spacing: -.05rem;
word-spacing: -.125rem;
line-height: var(--line-height-base);
background: var(--background-color);
accent-color: var(--accent-color);
scrollbar-width: thin;
scrollbar-color: var(--accent-color) var(--gray-light);
}
::-moz-selection {
color: var(--color-lightest);
background: var(--selection-color);
}
::selection {
color: var(--color-lightest);
background: var(--selection-color);
}
::-webkit-scrollbar {
width: var(--sizing-xs);
height: var(--sizing-xs);
}
body::-webkit-scrollbar {
width: var(--sizing-md);
height: var(--sizing-md);
}
::-webkit-scrollbar-thumb {
background: var(--accent-color);
}
::-webkit-scrollbar-track {
background-color: var(--gray-light);
}
::-webkit-scrollbar-button {
background-color: var(--accent-color);
}
p {
margin: var(--sizing-base) 0;
& a {
text-decoration: underline;
text-decoration-line: underline;
text-decoration-style: dashed;
text-underline-offset: var(--sizing-xs);
}
}
blockquote {
font-size: var(--font-size-lg);
word-break: break-word;
color: var(--gray-dark);
padding-left: var(--sizing-lg);
border-left: var(--sizing-xs) solid var(--gray-dark);
margin: var(--sizing-base) 0;
}
code {
padding: var(--sizing-xs);
color: var(--text-color-inverted);
background-color: var(--background-color-inverted);
}
:is(body, html, nav .search) svg {
stroke: var(--text-color);
}
:is(h1, h2, h3, h4, h5, h6) > svg {
margin-right: var(--sizing-xs);
stroke-width: var(--stroke-width-bold) !important;
}
sup.footnote-ref {
line-height: var(--line-height-xs);
& a {
text-decoration: none;
}
}
.footnote-item a {
text-decoration: none;
}
strong,
blockquote {
font-weight: var(--font-weight-bold);
}
em,
blockquote {
font-style: italic;
}
/* links */
a {
color: var(--accent-color);
text-decoration: none;
& svg {
stroke: var(--accent-color);
}
&.linked-header {
display: flex;
& svg {
stroke: var(--accent-color);
}
}
&.back-link-header {
margin-bottom: var(--sizing-base);
}
}
a:hover,
a:focus,
a:active,
:is(.main-title, footer nav.sub-pages) a:hover,
:is(.main-title, footer nav.sub-pages) a:focus,
:is(.main-title, footer nav.sub-pages) a:active {
color: var(--accent-color-hover);
transition-property: color;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
:is(
a:has(svg):hover,
a:has(svg):active,
a:has(svg):focus,
button:has(svg):hover,
button:has(svg):active,
button:has(svg):focus
) svg {
stroke: var(--accent-color-hover);
}
/* headers */
h1, h2, h3, h4, h5, h6 {
font-weight: var(--font-weight-bold);
margin: var(--sizing-base) 0;
}
h1 { font-size: var(--font-size-xl) }
h2 { font-size: var(--font-size-lg) }
h3 { font-size: var(--font-size-base) }
h4 { font-size: var(--font-size-md) }
h5 { font-size: var(--font-size-sm) }
h6 { font-size: var(--font-size-xs) }
.section-header-wrapper {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.section-header {
margin: var(--sizing-xl) 0 var(--sizing-lg);
&.reduced-margin {
margin: var(--sizing-md) 0 var(--sizing-lg);
}
&.no-top-margin {
margin: 0 0 var(--sizing-lg);
}
&.posts {
margin: 0 0 var(--sizing-lg);
}
}
.section-header-buttons {
margin: var(--sizing-3xl) 0 var(--sizing-lg);
&.reduced-margin {
margin: var(--sizing-md) 0 var(--sizing-lg);
}
&.no-top-margin {
margin: 0 0 var(--sizing-lg);
}
& > button {
margin-bottom: var(--sizing-sm) !important;
&:last-of-type {
margin-right: 0 !important;
}
}
}
/* dividers */
hr {
height: 1px;
background-color: var(--gray-light);
border: 0;
&.large-spacing {
margin: var(--sizing-base) 0;
}
}
/* tables */
table {
display: block;
overflow-x: auto;
width: 100%;
border: 1px solid var(--gray-light);
white-space: nowrap;
}
table,
th,
td {
border-collapse: collapse;
width: 100%;
}
:is(th, td):not(:last-child) {
border-right: 1px solid var(--gray-light);
}
th,
tr:not(:last-child) {
border-bottom: 1px solid var(--gray-light);
}
th,
td {
padding: var(--sizing-sm);
min-width: max-content;
word-break: break-word;
width: 100%;
}
td {
min-width: calc(var(--sizing-3xl) * 2);
}
th {
font-weight: var(--font-weight-bold);
background-color: var(--gray-lighter);
text-align: left;
}
/* header */
.main-title {
width: 100%;
padding-top: var(--sizing-3xl);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
& h1 {
line-height: 1.25;
margin: 0;
padding-bottom: 0;
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-extrabold);
line-height: var(--line-height-2xl);
& a {
text-decoration: none;
}
}
}
/* nav */
a svg,
button svg {
transform: rotate(0deg);
transition-property: transform;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
:is(a:hover, a:active, a:focus) svg,
a svg:hover,
a svg:active,
a svg:focus,
button:hover svg,
button svg:hover {
transform: rotate(8deg);
}
a svg:hover,
a svg:active,
a svg:focus {
stroke: var(--accent-color-hover);
}
a.link-icon svg {
stroke: var(--accent-color);
}
a.link-icon:hover svg,
a.link-icon:active svg,
a.link-icon:focus svg {
transform: rotate(0deg);
stroke: var(--accent-color-hover);
}
.icon--bold > svg {
stroke-width: var(--stroke-width-bold);
}
.menu-primary .active,
.menu-primary .active svg,
nav .active,
nav .active svg {
cursor: not-allowed;
}
.menu-primary .active,
nav .active {
color: var(--accent-color) !important;
}
.menu-primary .active svg,
nav .active svg {
stroke: var(--accent-color-hover) !important;
}
/* social icons */
.at svg { stroke: var(--brand-fastmail) !important; }
.brand-github svg { stroke: var(--brand-github) !important; }
.brand-npm svg { stroke: var(--brand-npm) !important; }
.brand-mastodon svg { stroke: var(--brand-mastodon) !important; }
.brain svg { stroke: var(--brand-listenbrainz) !important; }
.article svg { stroke: var(--posts) !important }
.headphones svg { stroke: var(--music) !important; }
.device-tv svg { stroke: var(--tv) !important; }
.books svg { stroke: var(--books) !important; }
.link svg { stroke: var(--links) !important; }
.info-square svg { stroke: var(--about) !important }
.search svg { stroke: var(--search) !important }
.news svg { stroke: var(--brand-instapaper) !important; }
.coffee svg { stroke: var(--brand-buy-me-a-coffee) !important; }
.heart-handshake svg { stroke: var(--webrings) !important; }
.rss svg { stroke: var(--brand-rss) !important; }
.favorite svg { stroke: var(--favorite) !important }
/* layout */
.default-wrapper {
padding-top: var(--sizing-2xl);
& .posts-wrapper article:last-of-type,
& .article-widget-wrapper:last-of-type {
border-bottom: none;
}
}
.main-wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1 1 0%;
width: 80%;
margin-left: auto;
margin-right: auto;
}
.home-status,
article {
margin-bottom: var(--sizing-base);
border-bottom: 1px solid var(--gray-light);
}
.home-status p:first-child {
margin-top: 0;
}
.article-widget-wrapper {
border-bottom: 1px solid var(--gray-light);
margin-bottom: var(--sizing-base);
& article {
border-bottom: none;
}
}
footer {
& .explainer {
margin: var(--sizing-3xl) 0 var(--sizing-lg);
}
& nav {
&.social {
gap: var(--sizing-sm);
margin-bottom: var(--sizing-lg);
width: 100%;
& svg {
margin-top: 0;
}
& a {
width: var(--sizing-xl);
height: var(--sizing-xl);
}
}
&.sub-pages {
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
padding-bottom: var(--sizing-3xl);
& span:not(.active) {
margin-left: var(--sizing-sm);
margin-right: var(--sizing-sm);
}
}
}
}
:is(.main-title, footer nav.sub-pages) a {
color: var(--text-color);
}
/* articles */
article {
& h2 {
line-height: var(--line-height-lg);
margin: 0 0 var(--sizing-lg);
transition-property: color;
}
& a h2:hover,
& a h2:focus,
& a h2:active {
color: var(--accent-color-hover);
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
& [rel="author"],
& time {
color: var(--gray-dark);
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
margin-right: var(--sizing-xs);
}
& [rel="author"] {
margin-bottom: var(--sizing-xs);
}
& p:first-of-type {
margin-top: var(--sizing-sm);
}
}
.footnotes + .banner {
margin-top: 0 !important;
}
/* buttons */
button {
appearance: none;
border: none;
}
/* selects */
select {
color: var(--text-color);
background-color: var(--background-color);
padding: var(--sizing-xs) var(--sizing-sm);
}
/* icons */
svg {
stroke-width: var(--stroke-width-default);
}
.icon-small > svg {
width: var(--sizing-lg);
height: var(--sizing-lg);
}
.icon-center-vertical > svg {
display: inline;
vertical-align: middle;
}
.icon-light > svg {
stroke: var(--gray-dark) !important;
}
/* lists */
ul, ol {
list-style-position: inside;
margin: var(--sizing-base) 0;
padding-left: var(--sizing-base);
}
li {
margin-top: var(--sizing-lg);
margin-bottom: var(--sizing-lg);
}
.link-list {
margin-bottom: 0;
& li {
margin-top: var(--sizing-sm);
margin-bottom: var(--sizing-sm);
&:last-child {
margin-bottom: 0;
}
}
&.reduced-spacing {
margin-top: 0;
margin-bottom: var(--sizing-3xl);
padding-left: 0;
& li:first-of-type {
margin-top: 0;
}
}
}
.link-list-header {
margin: var(--sizing-3xl) 0 var(--sizing-lg);
}
/* images */
.image-banner {
border: 1px solid var(--accent-color);
height: auto;
display: block;
width: 100%;
& > * {
display: block;
width: 100%;
height: auto;
}
}
/* pages */
.page-header {
margin-top: 0;
}
/* utilities */
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--sizing-xs);
}
.hidden {
display: none !important;
}
.text-centered {
text-align: center !important;
}
.text-small {
font-size: var(--font-size-sm) !important;
line-height: var(--line-height-sm) !important;
}
.flex-centered {
display: flex;
flex-direction: row;
align-items: center;
}
.flex-between {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.justify-centered {
justify-content: center;
}
.flex-wrap {
flex-wrap: wrap;
}
.gap-xs { gap: var(--sizing-xs) }
.gap-sm { gap: var(--sizing-sm) }
.gap-md { gap: var(--sizing-md) }
.gap-base { gap: var(--sizing-base) }
.gap-xl { gap: var(--sizing-xl) }
.gap-2xl { gap: var(--sizing-2xl) }
.gap-3xl { gap: var(--sizing-3xl) }
/* screens: md */
@media screen and (min-width: 768px) {
main {
max-width: 768px;
}
.section-header-wrapper {
flex-direction: row;
}
article {
& h2 {
margin: 0 0 var(--sizing-xs);
}
& p:first-of-type {
margin-top: var(--sizing-md);
}
}
footer nav.social {
gap: var(--sizing-md);
}
}