chore: font loading strategy
This commit is contained in:
parent
6e16b957ee
commit
069c937515
8 changed files with 34 additions and 29 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "4.14.0",
|
"version": "4.15.0",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
type="image/svg+xml">
|
type="image/svg+xml">
|
||||||
<link href="/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
<link href="/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
||||||
{% capture css %}
|
{% capture css %}
|
||||||
{% render "../assets/styles/fonts/silka.css" %}
|
{% render "../assets/styles/fonts/index.css" %}
|
||||||
{% render "../assets/styles/partials/vars.css" %}
|
{% render "../assets/styles/partials/vars.css" %}
|
||||||
{% render "../assets/styles/partials/animations.css" %}
|
{% render "../assets/styles/partials/animations.css" %}
|
||||||
{% render "../assets/styles/index.css" %}
|
{% render "../assets/styles/index.css" %}
|
||||||
|
|
BIN
src/assets/fonts/silka/black.woff2
Executable file
BIN
src/assets/fonts/silka/black.woff2
Executable file
Binary file not shown.
BIN
src/assets/fonts/silka/bold.woff2
Executable file
BIN
src/assets/fonts/silka/bold.woff2
Executable file
Binary file not shown.
BIN
src/assets/fonts/silka/regular.woff2
Executable file
BIN
src/assets/fonts/silka/regular.woff2
Executable file
Binary file not shown.
31
src/assets/styles/fonts/index.css
Normal file
31
src/assets/styles/fonts/index.css
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'silka';
|
||||||
|
src: url('/assets/fonts/silka/black.woff2') format('woff2'),;
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'silka';
|
||||||
|
src: url('/assets/fonts/silka/bold.woff2') format('woff2'),;
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'silka';
|
||||||
|
src: url('/assets/fonts/silka/regular.woff2') format('woff2'),;
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'serif-fallback';
|
||||||
|
src: local('Helvetica Neue');
|
||||||
|
line-height: 1.5;
|
||||||
|
font-weight: 400;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -52,7 +52,7 @@
|
||||||
--webrings: #ec8fd0;
|
--webrings: #ec8fd0;
|
||||||
|
|
||||||
/* fonts */
|
/* fonts */
|
||||||
--font-sans: silka, Inter, Roboto, 'Helvetica Neue', system-ui, sans-serif;
|
--font-sans: silka, 'serif-fallback', system-ui, sans-serif;
|
||||||
--font-mono: ui-monospace, monospace;
|
--font-mono: ui-monospace, monospace;
|
||||||
|
|
||||||
/* text */
|
/* text */
|
||||||
|
|
Reference in a new issue