chore: css consolidation + tokens

This commit is contained in:
Cory Dransfeldt 2024-06-30 20:30:41 -07:00
parent b3ce317a90
commit 9df10a074f
No known key found for this signature in database
15 changed files with 67 additions and 65 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.7.5", "version": "19.7.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.7.5", "version": "19.7.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -826,9 +826,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001638", "version": "1.0.30001639",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001639.tgz",
"integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==", "integrity": "sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.7.5", "version": "19.7.6",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -2,7 +2,7 @@
<a href="https://cs.sjoy.lol"> <a href="https://cs.sjoy.lol">
<h3 class="text-centered">CSS JOY Webring</h3> <h3 class="text-centered">CSS JOY Webring</h3>
</a> </a>
<div class="webring-centered flex-centered"> <div class="flex-centered justify-centered">
<a href="https://webri.ng/webring/cssjoy/previous?via=https://coryd.dev/webrings"> <a href="https://webri.ng/webring/cssjoy/previous?via=https://coryd.dev/webrings">
{% tablericon "arrow-left" "Previous site" %} {% tablericon "arrow-left" "Previous site" %}
</a> </a>

View file

@ -1,5 +1,5 @@
<div class="webring-wrapper"> <div class="webring-wrapper">
<div class="webring-centered flex-centered"> <div class="flex-centered justify-centered">
<img <img
srcset=" srcset="
https://cdn.coryd.dev/assets/webrings/theclaw.png?width=200 200w, https://cdn.coryd.dev/assets/webrings/theclaw.png?width=200 200w,
@ -20,7 +20,7 @@
/> />
</div> </div>
<h3 class="text-centered">The Claw Webring</h3> <h3 class="text-centered">The Claw Webring</h3>
<div class="webring-centered flex-centered"> <div class="flex-centered justify-centered">
<strong> <strong>
<a class="no-underline" href="https://github.com/whitep4nth3r/the-claw-webring">Join!</a> <a class="no-underline" href="https://github.com/whitep4nth3r/the-claw-webring">Join!</a>
</strong> </strong>

View file

@ -93,15 +93,6 @@ code {
stroke-width: var(--stroke-width-bold) !important; stroke-width: var(--stroke-width-bold) !important;
} }
sup.footnote-ref {
line-height: var(--line-height-xs);
}
sup.footnote-ref a,
.footnote-backref {
text-decoration: none;
}
strong, strong,
blockquote { blockquote {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
@ -115,6 +106,7 @@ blockquote {
svg { svg {
width: var(--sizing-svg-base); width: var(--sizing-svg-base);
height: var(--sizing-svg-base); height: var(--sizing-svg-base);
stroke-width: var(--stroke-width-default);
} }
/* links */ /* links */
@ -317,17 +309,17 @@ a.link-icon {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
gap: var(--sizing-xs); gap: var(--sizing-xs);
}
a.link-icon svg { & svg {
stroke: var(--accent-color); stroke: var(--accent-color);
} }
a.link-icon:hover svg, &:hover svg,
a.link-icon:active svg, &:active svg,
a.link-icon:focus svg { &:focus svg {
transform: rotate(0deg); transform: rotate(0deg);
stroke: var(--accent-color-hover); stroke: var(--accent-color-hover);
}
} }
.menu-primary .active, .menu-primary .active,
@ -485,28 +477,7 @@ article {
} }
} }
.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 */ /* icons */
svg {
stroke-width: var(--stroke-width-default);
}
.icon-center-vertical > svg { .icon-center-vertical > svg {
display: inline; display: inline;
vertical-align: middle; vertical-align: middle;
@ -539,10 +510,10 @@ li {
/* images */ /* images */
.image-banner { .image-banner {
border: 1px solid var(--accent-color); border: var(--border-default);
height: auto; height: auto;
display: block;
width: 100%; width: 100%;
display: block;
} }
/* pages */ /* pages */

View file

@ -1,4 +1,7 @@
button { button {
appearance: none;
border: none;
&:not(.theme-toggle) { &:not(.theme-toggle) {
border-radius: var(--rounded-full); border-radius: var(--rounded-full);
padding: var(--sizing-sm) var(--sizing-lg); padding: var(--sizing-sm) var(--sizing-lg);

View file

@ -10,7 +10,7 @@ textarea {
font-family: var(--font-mono); font-family: var(--font-mono);
color: var(--text-color); color: var(--text-color);
background-color: var(--background-color); background-color: var(--background-color);
border: 1px solid var(--accent-color); border: var(--border-default);
padding: var(--sizing-sm); padding: var(--sizing-sm);
font-size: var(--font-size-base); font-size: var(--font-size-base);
width: 100%; width: 100%;
@ -29,6 +29,12 @@ textarea:focus-within {
padding: calc(var(--sizing-sm) + 1px); padding: calc(var(--sizing-sm) + 1px);
} }
select {
color: var(--text-color);
background-color: var(--background-color);
padding: var(--sizing-xs) var(--sizing-sm);
}
.search__form { .search__form {
margin-top: 0; margin-top: 0;

View file

@ -89,7 +89,7 @@
} }
& img { & img {
border: 1px solid var(--accent-color); border: var(--border-default);
transition-property: border-color; transition-property: border-color;
transition-timing-function: var(--transition-ease-in-out); transition-timing-function: var(--transition-ease-in-out);
transition-duration: 300ms; transition-duration: 300ms;

View file

@ -26,7 +26,7 @@
} }
& img { & img {
border: 1px solid var(--accent-color); border: var(--border-default);
width: calc(var(--sizing-3xl) * 1.5); width: calc(var(--sizing-3xl) * 1.5);
height: calc(var(--sizing-3xl) * 1.5); height: calc(var(--sizing-3xl) * 1.5);
} }
@ -58,6 +58,14 @@
& .title { & .title {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
line-height: 1.5; line-height: 1.5;
&:focus-within {
outline: var(--outline);
}
& a {
outline: 0;
}
} }
& .title, & .title,

View file

@ -65,6 +65,12 @@
--warning: #ff8c00; --warning: #ff8c00;
--webrings: #da70d6; --webrings: #da70d6;
/* outline */
--outline: 2px dashed var(--accent-color);
/* borders */
--border-default: 1px solid var(--accent-color);
/* fonts */ /* fonts */
--font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace; --font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace;

View file

@ -52,7 +52,7 @@
.book-entry, .book-entry,
.book-focus { .book-focus {
& img { & img {
border: 1px solid var(--accent-color); border: var(--border-default);
} }
& .book-meta { & .book-meta {

View file

@ -7,7 +7,7 @@
margin-top: var(--sizing-base); margin-top: var(--sizing-base);
& img { & img {
border: 1px solid var(--accent-color); border: var(--border-default);
width: 100%; width: 100%;
height: auto; height: auto;
aspect-ratio: var(--aspect-ratio-square); aspect-ratio: var(--aspect-ratio-square);
@ -58,11 +58,11 @@
} }
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.artist-focus img {
max-width: 240px;
}
.artist-focus { .artist-focus {
& img {
max-width: 240px;
}
& .artist-display { & .artist-display {
flex-direction: row; flex-direction: row;
gap: var(--sizing-md); gap: var(--sizing-md);

View file

@ -1,4 +1,3 @@
/* footnotes */
.footnotes-list { .footnotes-list {
margin-bottom: 0; margin-bottom: 0;
padding-left: 0; padding-left: 0;
@ -14,4 +13,17 @@
.footnote-item > p { .footnote-item > p {
display: inline; display: inline;
}
sup.footnote-ref {
line-height: var(--line-height-xs);
}
sup.footnote-ref a,
.footnote-backref {
text-decoration: none;
}
.footnotes + .banner {
margin-top: 0 !important;
} }

View file

@ -1,6 +1,6 @@
.watching { .watching {
& img { & img {
border: 1px solid var(--accent-color); border: var(--border-default);
width: 100%; width: 100%;
height: auto; height: auto;
} }

View file

@ -4,8 +4,4 @@
h3 { h3 {
margin: var(--sizing-2xl) 0 var(--sizing-lg); margin: var(--sizing-2xl) 0 var(--sizing-lg);
} }
& > .webring-centered {
justify-content: center;
}
} }