Compare commits

...

2 commits

8 changed files with 16 additions and 11 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.1.0", "version": "3.2.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.1.0", "version": "3.2.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"html-minifier-terser": "7.2.0", "html-minifier-terser": "7.2.0",
@ -2098,9 +2098,9 @@
} }
}, },
"node_modules/glob": { "node_modules/glob": {
"version": "11.0.1", "version": "11.0.2",
"resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.2.tgz",
"integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==", "integrity": "sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==",
"dev": true, "dev": true,
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {

View file

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

BIN
src/assets/fonts/dm.woff2 Normal file

Binary file not shown.

Binary file not shown.

BIN
src/assets/fonts/dmi.woff2 Normal file

Binary file not shown.

Binary file not shown.

View file

@ -8,17 +8,17 @@
@font-face { @font-face {
font-family: "DM Sans"; font-family: "DM Sans";
src: url("/assets/fonts/dmr.woff2") format("woff2"); src: url("/assets/fonts/dm.woff2") format("woff2");
font-weight: 400; font-weight: 100 700;
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;
} }
@font-face { @font-face {
font-family: "DM Sans"; font-family: "DM Sans";
src: url("/assets/fonts/dmb.woff2") format("woff2"); src: url("/assets/fonts/dmi.woff2") format("woff2");
font-weight: 700; font-weight: 100 700;
font-style: normal; font-style: italic;
font-display: swap; font-display: swap;
} }

View file

@ -46,6 +46,11 @@ label svg {
cursor: pointer; cursor: pointer;
} }
detail label:has(input[type="checkbox"]) {
display: inline-flex;
gap: var(--spacing-xs);
}
summary { summary {
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
} }