chore: formatting

This commit is contained in:
Cory Dransfeldt 2024-09-29 13:18:19 -07:00
parent b33034eec4
commit cf47c33f6a
No known key found for this signature in database
3 changed files with 57 additions and 57 deletions

4
package-lock.json generated
View file

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

View file

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

@ -19,6 +19,10 @@ pre {
padding: var(--spacing-lg); padding: var(--spacing-lg);
margin: var(--sizing-xl) 0; margin: var(--sizing-xl) 0;
overflow: auto; overflow: auto;
& > code {
padding: 0;
}
} }
:not(pre) > code { :not(pre) > code {
@ -32,10 +36,6 @@ pre,
border: 1px solid var(--gray-300); border: 1px solid var(--gray-300);
} }
pre > code {
padding: 0;
}
.namespace { .namespace {
opacity: 0.7; opacity: 0.7;
} }
@ -47,65 +47,65 @@ pre > code {
.token { .token {
color: var(--blue-200); color: var(--blue-200);
}
.token.comment, &.comment,
.token.prolog, &.prolog,
.token.doctype, &.doctype,
.token.cdata { &.cdata {
color: var(--gray-500); color: var(--gray-500);
} }
.token.punctuation { &.punctuation {
color: var(--gray-300); color: var(--gray-300);
} }
.token.boolean, &.boolean,
.token.number { &.number {
color: var(--blue-400); color: var(--blue-400);
} }
.token.selector, &.selector,
.token.attr-name, &.attr-name,
.token.string, &.string,
.token.char, &.char,
.token.builtin, &.builtin,
.token.inserted { &.inserted {
color: #6fff6f; color: #6fff6f;
} }
.token.operator, &.operator,
.token.entity, &.entity,
.token.url, &.url,
.token.variable { &.variable {
color: #99ccff; color: #99ccff;
} }
.token.atrule, &.atrule,
.token.attr-value, &.attr-value,
.token.function, &.function,
.token.class-name { &.class-name {
color: #ff8f66; color: #ff8f66;
} }
.token.keyword { &.keyword {
color: #00ffff; color: #00ffff;
} }
.token.regex, &.regex,
.token.important { &.important {
color: #ff7373; color: #ff7373;
} }
.token.italic { &.italic {
font-style: italic; font-style: italic;
} }
.token.entity { &.entity {
cursor: help; cursor: help;
} }
.token.important, &.important,
.token.bold { &.bold {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
}
} }