font replacements

This commit is contained in:
zyqunix 2024-12-02 22:44:29 +01:00
parent 30587e0317
commit 2b56853761
9 changed files with 28 additions and 33 deletions

View file

@ -1,3 +1,13 @@
@font-face {
font-family: 'Hack';
src: url('/Fonts/Hack/Hack-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'JetBrainsMono';
src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
}
body {
display: flex;
justify-content: center;
@ -10,6 +20,7 @@ body {
background-color: #2a2a2a;
color: #f0f0f0;
overflow-x: hidden;
font-family: 'Hack', 'JetBrainsMono', monospace;
}
html {