chore: clean up spacing

This commit is contained in:
Cory Dransfeldt 2024-04-30 07:29:32 -07:00
parent b933a5f4b5
commit 53f4a500ca
No known key found for this signature in database
5 changed files with 17 additions and 12 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "13.2.8", "version": "13.2.9",
"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

@ -5,7 +5,7 @@ html {
font-size: var(--font-size-base); font-size: var(--font-size-base);
letter-spacing: -.05rem; letter-spacing: -.05rem;
word-spacing: -.125rem; word-spacing: -.125rem;
line-height: var(--line-height-xl); line-height: var(--line-height-base);
background: var(--background-color); background: var(--background-color);
accent-color: var(--accent-color) accent-color: var(--accent-color)
} }
@ -50,7 +50,6 @@ body::-webkit-scrollbar {
} }
blockquote { blockquote {
line-height: var(--line-height-lg);
margin: var(--sizing-base) 0; margin: var(--sizing-base) 0;
} }
@ -523,6 +522,7 @@ li {
& li { & li {
margin-top: var(--sizing-sm); margin-top: var(--sizing-sm);
margin-bottom: var(--sizing-sm); margin-bottom: var(--sizing-sm);
line-height: var(--line-height-sm);
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;

View file

@ -65,7 +65,7 @@
& .subheader { & .subheader {
color: var(--color-lightest); color: var(--color-lightest);
font-size: var(--font-size-xs); font-size: var(--font-size-xs);
line-height: var(--line-height-xs); line-height: 1.5;
text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px; text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
} }

View file

@ -49,7 +49,12 @@
& .subtext, & .subtext,
& .timestamp { & .timestamp {
font-size: var(--font-size-xs); font-size: var(--font-size-xs);
line-height: var(--line-height-xs); }
& .title,
& .subtext,
& .timestamp {
line-height: 1.5;
} }
& .timestamp { & .timestamp {

View file

@ -61,25 +61,25 @@
/* text */ /* text */
--font-size-xs: .725rem; --font-size-xs: .725rem;
--line-height-xs: 1.225rem; --line-height-xs: 1.45rem;
--font-size-sm: .825rem; --font-size-sm: .825rem;
--line-height-sm: 1.325rem; --line-height-sm: 1.65rem;
--font-size-base: .95rem; --font-size-base: .95rem;
--line-height-base: 1.45rem; --line-height-base: 1.9rem;
--font-size-lg: 1.125rem; --font-size-lg: 1.125rem;
--line-height-lg: 1.5rem; --line-height-lg: 2.25rem;
--font-size-xl: 1.25rem; --font-size-xl: 1.25rem;
--line-height-xl: 1.75rem; --line-height-xl: 2.5rem;
--font-size-2xl: 1.5rem; --font-size-2xl: 1.5rem;
--line-height-2xl: 2rem; --line-height-2xl: 3rem;
--font-size-3xl: 1.7rem; --font-size-3xl: 1.7rem;
--line-height-3xl: 2.25rem; --line-height-3xl: 3.4rem;
--font-weight-base: 400; --font-weight-base: 400;
--font-weight-bold: 600; --font-weight-bold: 600;