Fix missing fonts

This commit is contained in:
Emilia Allison 2022-10-25 13:36:19 -04:00
parent 8396d5e469
commit 7d20c023d2
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
4 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title>CSS Purgatory - Emilia Allison</title> <title>CSS Purgatory - Emilia Allison</title>
<link rel="stylesheet" href="pink/index.css"> <link rel="stylesheet" href="../../css/about.css">
<meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="viewport" content="width=device-width,initial-scale=1">
<style> <style>
/* For classes not supplied by base.css /* For classes not supplied by base.css
@ -14,11 +14,9 @@
</style> </style>
</head> </head>
<body> <body>
<div class="overlay"> <div class="overlay"></div>
</div> <main class="offset-grid--top--wide fullsize">
<div class="outerdiv contentholder"> <div>
<div class="contentholder__topfiller"></div>
<div class="content flex column">
<h1> <h1>
CSS Purgatory CSS Purgatory
</h1> </h1>

BIN
src/fonts/Inconsolata.ttf Normal file

Binary file not shown.

BIN
src/fonts/Jost.ttf Normal file

Binary file not shown.

View File

@ -19,7 +19,7 @@ $-fs-900: math.div(100rem, 16);
@font-face { @font-face {
font-family: "Inconsolata"; font-family: "Inconsolata";
src: url("fonts/Inconsolata.ttf"); src: url("/fonts/Inconsolata.ttf");
font-display: swap; font-display: swap;
font-variation-settings: "wdth" 85; font-variation-settings: "wdth" 85;
@ -27,7 +27,7 @@ $-fs-900: math.div(100rem, 16);
@font-face { @font-face {
font-family: "Jost"; font-family: "Jost";
src: url("fonts/Jost.ttf"); src: url("/fonts/Jost.ttf");
font-display: swap; font-display: swap;
} }