chore: spacing + formatting

This commit is contained in:
Cory Dransfeldt 2024-07-16 20:13:28 -07:00
parent 2b59bf9d24
commit d48ec86f28
No known key found for this signature in database
9 changed files with 95 additions and 94 deletions

View file

@ -2,5 +2,6 @@
"default": true, "default": true,
"MD013": false, "MD013": false,
"MD033": false, "MD033": false,
"MD041": false "MD041": false,
"MD047": false
} }

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.0", "version": "20.12.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.0", "version": "20.12.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.12.0", "version": "20.12.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,6 +1,6 @@
:root { :root {
--grid-square: repeat(2,minmax(0,1fr)); --grid-square: repeat(2, minmax(0, 1fr));
--grid-vertical: repeat(3,minmax(0,1fr)); --grid-vertical: repeat(3, minmax(0, 1fr));
} }
.media-grid { .media-grid {
@ -98,7 +98,7 @@
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
:root { :root {
--grid-square: repeat(4,minmax(0,1fr)); --grid-square: repeat(4, minmax(0, 1fr));
--grid-vertical: repeat(6,minmax(0,1fr)); --grid-vertical: repeat(6, minmax(0, 1fr));
} }
} }

View file

@ -1,7 +1,7 @@
.link-grid { .link-grid {
display: grid; display: grid;
gap: var(--sizing-sm); gap: var(--sizing-sm);
grid-template-columns: repeat(1,minmax(0,1fr)); grid-template-columns: repeat(1, minmax(0, 1fr));
margin-bottom: var(--sizing-base); margin-bottom: var(--sizing-base);
& .link-box { & .link-box {
@ -12,6 +12,6 @@
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.link-grid { .link-grid {
grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-columns: repeat(2, minmax(0, 1fr));
} }
} }

View file

@ -1,6 +1,6 @@
code[class*="language-"], code[class*="language-"],
pre[class*="language-"] { pre[class*="language-"] {
color: #b0cfff; color: var(--blue-200);
background: none; background: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.3); text-shadow: 0 1px rgba(0, 0, 0, 0.3);
font-family: var(--font-mono); font-family: var(--font-mono);
@ -18,87 +18,92 @@ pre[class*="language-"] {
padding: var(--sizing-lg); padding: var(--sizing-lg);
margin: var(--sizing-xl) 0; margin: var(--sizing-xl) 0;
overflow: auto; overflow: auto;
background: #1a1d22; background: var(--gray-darkest);
border: 1px solid #dfe3e8; border: 1px solid var(--gray-200);
} }
:not(pre) > code[class*="language-"] { :not(pre) > code[class*="language-"] {
padding: var(--sizing-xs); padding: var(--sizing-xs);
white-space: normal; white-space: normal;
background: #1a1d22; background: var(--gray-darkest);
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #7f899b;
}
.token.punctuation {
color: #dfe3e8;
} }
.namespace { .namespace {
opacity: 0.7; opacity: 0.7;
} }
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #4b88ff;
}
.token.boolean,
.token.number {
color: #2458d4;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #2ecc71;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string, .language-css .token.string,
.style .token.string, .style .token.string {
.token.variable {
color: #3498db; color: #3498db;
} }
.token.atrule, .token {
.token.attr-value, &.comment,
.token.function, &.prolog,
.token.class-name { &.doctype,
color: #e67e22; &.cdata {
} color: var(--gray-600);
}
.token.keyword { &.punctuation {
color: #1abc9c; color: var(--gray-200);
} }
.token.regex, &.property,
.token.important { &.tag,
color: #e74c3c; &.constant,
} &.symbol,
&.deleted {
color: var(--blue-500);
}
.token.important, &.boolean,
.token.bold { &.number {
font-weight: var(--font-weight-bold); color: var(--blue-700);
} }
.token.italic { &.selector,
font-style: italic; &.attr-name,
} &.string,
&.char,
&.builtin,
&.inserted {
color: #2ecc71;
}
.token.entity { &.operator,
cursor: help; &.entity,
&.url,
&.variable {
color: #3498db;
}
&.atrule,
&.attr-value,
&.function,
&.class-name {
color: #e67e22;
}
&.keyword {
color: #1abc9c;
}
&.regex,
&.important {
color: #e74c3c;
}
&.italic {
font-style: italic;
}
&.entity {
cursor: help;
}
&.important,
&.bold {
font-weight: var(--font-weight-bold);
}
} }

View file

@ -1,39 +1,34 @@
/* /* use a more-intuitive box-sizing model */
1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after { *, *::before, *::after {
box-sizing: border-box; box-sizing: border-box;
} }
/*
2. Remove default margin /* remove default margin */
*/
* { * {
margin: 0; margin: 0;
} }
/* /*
Typographic tweaks! typographic tweaks
3. Add accessible line-height - add accessible line-height
4. Improve text rendering - improve text rendering
*/ */
body { body {
line-height: 1.5; line-height: 1.5;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
/*
5. Remove built-in form typography styles /* remove built-in form typography styles */
*/
input, button, textarea, select { input, button, textarea, select {
font: inherit; font: inherit;
} }
/*
6. Avoid text overflows /* avoid text overflows */
*/
p, h1, h2, h3, h4, h5, h6 { p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
/*
7. Create a root stacking context /* create a root stacking context */
*/
#root, #__next { #root, #__next {
isolation: isolate; isolation: isolate;
} }