634 lines
11 KiB
CSS
634 lines
11 KiB
CSS
body,
|
|
html {
|
|
color: var(--text-color);
|
|
font-family: var(--font-mono);
|
|
font-size: var(--font-size-base);
|
|
letter-spacing: -.05rem;
|
|
line-height: var(--line-height-base);
|
|
background: var(--background-color);
|
|
accent-color: var(--accent-color)
|
|
}
|
|
|
|
::-moz-selection {
|
|
color: var(--color-lightest);
|
|
background: var(--selection-color);
|
|
}
|
|
|
|
::selection {
|
|
color: var(--color-lightest);
|
|
background: var(--selection-color);
|
|
}
|
|
|
|
/* scrollbars */
|
|
body,
|
|
html {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--accent-color) var(--gray-light);
|
|
}
|
|
|
|
::-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);
|
|
}
|
|
|
|
blockquote {
|
|
line-height: var(--line-height-lg);
|
|
margin: var(--sizing-base) 0;
|
|
}
|
|
|
|
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);
|
|
padding-left: var(--sizing-lg);
|
|
color: var(--gray-dark);
|
|
border-left: var(--sizing-xs) solid var(--gray-dark);
|
|
word-break: break-word;
|
|
}
|
|
|
|
:is(body, html, nav .tags, 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;
|
|
}
|
|
|
|
a.linked-header {
|
|
display: flex;
|
|
|
|
& svg {
|
|
stroke: var(--accent-color);
|
|
}
|
|
}
|
|
|
|
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 {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a,
|
|
.active {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
a:hover,
|
|
a:focus,
|
|
a:active,
|
|
:is(.main-title, footer nav:last-child) a:hover,
|
|
:is(.main-title, footer nav:last-child) a:focus,
|
|
:is(.main-title, footer nav:last-child) 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);
|
|
}
|
|
|
|
h1 { font-size: var(--font-size-3xl) }
|
|
h2 { font-size: var(--font-size-2xl) }
|
|
h3 { font-size: var(--font-size-xl) }
|
|
h4 { font-size: var(--font-size-lg) }
|
|
h5 { font-size: var(--font-size-base) }
|
|
h6 { font-size: var(--font-size-sm) }
|
|
|
|
.section-header-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.section-header {
|
|
margin: var(--sizing-3xl) 0 var(--sizing-lg);
|
|
|
|
&.posts {
|
|
margin: 0 0 var(--sizing-lg);
|
|
}
|
|
}
|
|
|
|
.default-wrapper > .section-header:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.section-header-buttons {
|
|
margin: 0 0 var(--sizing-lg);
|
|
|
|
& > button {
|
|
margin-bottom: var(--sizing-sm);
|
|
|
|
&:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* dividers */
|
|
hr {
|
|
height: 1px;
|
|
background-color: var(--gray-light);
|
|
border: 0;
|
|
|
|
&.large-spacing {
|
|
margin: var(--sizing-base) 0;
|
|
}
|
|
}
|
|
|
|
/* tables */
|
|
table {
|
|
display: block;
|
|
overflow-x: scroll;
|
|
width: 100%;
|
|
max-width: fit-content;
|
|
margin: 0 auto;
|
|
white-space: nowrap;
|
|
border: 1px solid var(--gray-light);
|
|
}
|
|
|
|
table,
|
|
th,
|
|
td {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
: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: calc(var(--sizing-3xl) * 2);
|
|
word-break: break-word;
|
|
}
|
|
|
|
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-3xl);
|
|
font-weight: var(--font-weight-extrabold);
|
|
line-height: var(--line-height-3xl);
|
|
|
|
& 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.view-all svg {
|
|
stroke: var(--accent-color);
|
|
}
|
|
|
|
a.view-all:hover svg,
|
|
a.view-all:active svg,
|
|
a.view-all:focus svg {
|
|
transform: rotate(0deg);
|
|
stroke: var(--accent-color-hover);
|
|
}
|
|
|
|
.icon--bold > svg {
|
|
stroke-width: var(--stroke-width-bold);
|
|
}
|
|
|
|
.active,
|
|
.active svg {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
a svg,
|
|
nav .active svg,
|
|
nav ul li .active svg {
|
|
stroke: var(--accent-color);
|
|
}
|
|
|
|
/* social icons */
|
|
.at svg { stroke: var(--brand-hey) !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; }
|
|
.device-tv svg { stroke: var(--brand-trakt) !important; }
|
|
.news svg { stroke: var(--brand-instapaper) !important; }
|
|
.books svg { stroke: var(--brand-books) !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; }
|
|
|
|
.coffee:hover,
|
|
.coffee:active,
|
|
.coffee:focus {
|
|
color: var(--brand-buy-me-a-coffee) !important;
|
|
}
|
|
|
|
.brand-mastodon:hover,
|
|
.brand-mastodon:active,
|
|
.brand-mastodon:focus {
|
|
color: var(--brand-mastodon) !important;
|
|
}
|
|
|
|
.rss:hover,
|
|
.rss:active,
|
|
.rss:focus {
|
|
color: var(--brand-rss) !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;
|
|
}
|
|
|
|
/* now */
|
|
.now-topper,
|
|
article {
|
|
border-bottom: 1px solid var(--gray-light);
|
|
margin-bottom: var(--sizing-base);
|
|
}
|
|
|
|
.now-topper 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 nav:first-child {
|
|
gap: var(--sizing-sm);
|
|
margin-top: var(--sizing-3xl);
|
|
padding: var(--sizing-3xl) 0 var(--sizing-lg);
|
|
width: 100%;
|
|
|
|
& svg {
|
|
margin-top: 0;
|
|
}
|
|
|
|
& a {
|
|
width: var(--sizing-xl);
|
|
height: var(--sizing-xl);
|
|
}
|
|
}
|
|
|
|
footer nav:last-child {
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--line-height-sm);
|
|
padding-bottom: var(--sizing-3xl);
|
|
|
|
& span:not(.active) {
|
|
margin-left: var(--sizing-xs);
|
|
margin-right: var(--sizing-xs);
|
|
}
|
|
}
|
|
|
|
:is(.main-title, footer nav:last-child) a {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.highlight-text {
|
|
color: var(--color-lightest);
|
|
background-color: var(--accent-color);
|
|
padding: var(--sizing-xs);
|
|
}
|
|
|
|
code {
|
|
padding: var(--sizing-xs);
|
|
color: var(--text-color-inverted);
|
|
background-color: var(--background-color-inverted);
|
|
}
|
|
|
|
/* articles */
|
|
article {
|
|
& h2 {
|
|
line-height: var(--line-height-2xl);
|
|
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);
|
|
}
|
|
}
|
|
|
|
.tag {
|
|
margin-bottom: var(--sizing-lg);
|
|
display: inline-block;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: var(--sizing-lg);
|
|
}
|
|
}
|
|
|
|
/* buttons */
|
|
button {
|
|
appearance: none;
|
|
border: none;
|
|
}
|
|
|
|
/* selects */
|
|
select {
|
|
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 */
|
|
.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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.section-header-buttons {
|
|
margin: var(--sizing-3xl) 0 var(--sizing-lg);
|
|
|
|
& > button {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
article {
|
|
& h2 {
|
|
margin: 0 0 var(--sizing-xs);
|
|
}
|
|
|
|
& p:first-of-type {
|
|
margin-top: var(--sizing-md);
|
|
}
|
|
}
|
|
|
|
.tag {
|
|
margin-bottom: var(--sizing-sm);
|
|
|
|
&:not(:last-child) {
|
|
margin-right: var(--sizing-sm);
|
|
}
|
|
}
|
|
|
|
footer nav:first-child {
|
|
gap: var(--sizing-md);
|
|
}
|
|
}
|