chore: styles
This commit is contained in:
parent
5d85362db1
commit
5956d72f41
12 changed files with 25 additions and 33 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "24.6.4",
|
||||
"version": "24.6.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "24.6.4",
|
||||
"version": "24.6.5",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.5.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "24.6.4",
|
||||
"version": "24.6.5",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -16,7 +16,7 @@ html {
|
|||
|
||||
body {
|
||||
font-size: var(--font-size-base);
|
||||
line-height: var(--line-height-default);
|
||||
line-height: var(--line-height-base);
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
|
@ -182,6 +182,7 @@ a.icon-link:focus,
|
|||
a.icon-link:focus-within {
|
||||
outline: var(--outline-default);
|
||||
border-radius: var(--border-radius-slight);
|
||||
line-height: var(--line-height-sm);
|
||||
text-decoration: none;
|
||||
|
||||
& svg {
|
||||
|
@ -228,7 +229,7 @@ a:active,
|
|||
/* headers */
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: var(--font-weight-bold);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
margin: var(--margin-vertical-base-horizontal-zero);
|
||||
}
|
||||
|
||||
|
@ -250,7 +251,7 @@ h6 { font-size: var(--font-size-sm); }
|
|||
|
||||
.section-header {
|
||||
margin: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
line-height: 1;
|
||||
line-height: var(--line-height-sm);
|
||||
|
||||
&.posts {
|
||||
margin: 0 0 var(--spacing-lg);
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
& .subheader {
|
||||
color: var(--color-lightest);
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
text-shadow: var(--text-shadow-default);
|
||||
}
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
|
||||
& .title {
|
||||
font-weight: var(--font-weight-bold);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
|
||||
& a {
|
||||
outline: none;
|
||||
|
@ -82,7 +82,7 @@
|
|||
& .subtext,
|
||||
& .subtext p,
|
||||
& .timestamp {
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
}
|
||||
|
||||
& .subtext,
|
||||
|
|
|
@ -92,8 +92,9 @@
|
|||
--font-weight-bold: 600;
|
||||
--font-weight-extrabold: 800;
|
||||
|
||||
--line-height-reduced: 1.5;
|
||||
--line-height-default: 2;
|
||||
--line-height-sm: 1;
|
||||
--line-height-md: 1.5;
|
||||
--line-height-base: 2;
|
||||
|
||||
/* spacing */
|
||||
--sizing-xs: .25rem;
|
||||
|
|
|
@ -90,8 +90,8 @@
|
|||
--font-weight-bold: 600;
|
||||
--font-weight-extrabold: 800;
|
||||
|
||||
--line-height-reduced: 1.5;
|
||||
--line-height-default: 2;
|
||||
--line-height-md: 1.5;
|
||||
--line-height-base: 2;
|
||||
|
||||
/* outline */
|
||||
--outline-default: var(--outline-default);
|
||||
|
@ -147,7 +147,7 @@
|
|||
font-family: var(--font-mono);
|
||||
font-size: var(--font-size-base);
|
||||
font-weight: var(--font-weight-base);
|
||||
line-height: var(--line-height-default);
|
||||
line-height: var(--line-height-base);
|
||||
letter-spacing: -.05rem;
|
||||
word-spacing: -.125rem;
|
||||
color: var(--text-color);
|
||||
|
@ -209,7 +209,7 @@
|
|||
|
||||
h1, h2, h3 {
|
||||
font-weight: var(--font-weight-bold);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
margin-bottom: var(--spacing-base);
|
||||
}
|
||||
|
||||
|
@ -219,19 +219,12 @@
|
|||
}
|
||||
|
||||
a:focus,
|
||||
a:focus-within
|
||||
a:focus > svg,
|
||||
a:focus-within > svg {
|
||||
a:focus-within, {
|
||||
outline: var(--outline-default);
|
||||
border-radius: var(--border-radius-slight);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:has(svg):focus,
|
||||
a:has(svg):focus-within {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
|
|
|
@ -69,12 +69,11 @@
|
|||
& p {
|
||||
&.title {
|
||||
font-size: var(--font-size-xl);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
}
|
||||
|
||||
&.sub-meta {
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-sm);
|
||||
|
||||
& svg {
|
||||
width: var(--sizing-svg-sm);
|
||||
|
|
|
@ -35,12 +35,11 @@
|
|||
|
||||
&.title {
|
||||
font-size: var(--font-size-xl);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
}
|
||||
|
||||
&.sub-meta {
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-sm);
|
||||
|
||||
& svg {
|
||||
width: var(--sizing-svg-sm);
|
||||
|
|
|
@ -47,7 +47,7 @@ a:active > .watching.hero::after {
|
|||
|
||||
& .header,
|
||||
& .subheader {
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
text-shadow: var(--text-shadow-default);
|
||||
}
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ a:active > .watching.hero::after {
|
|||
& .rating {
|
||||
color: var(--color-lightest);
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
text-shadow: var(--text-shadow-default);
|
||||
}
|
||||
|
||||
|
@ -171,12 +171,11 @@ a:active > .watching.hero::after {
|
|||
|
||||
&.title {
|
||||
font-size: var(--font-size-xl);
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
}
|
||||
|
||||
&.sub-meta {
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-sm);
|
||||
|
||||
& svg {
|
||||
width: var(--sizing-svg-sm);
|
||||
|
|
|
@ -10,7 +10,7 @@ pre[class*="language-"] {
|
|||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
tab-size: 2;
|
||||
hyphens: none;
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
- improve text rendering
|
||||
*/
|
||||
body {
|
||||
line-height: var(--line-height-reduced);
|
||||
line-height: var(--line-height-md);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue