feat(style): supports custom font

This commit is contained in:
Anhgelus Morhtuuzh 2024-11-10 17:16:45 +01:00
parent fe8acc0556
commit 7e50f8489e
No known key found for this signature in database
GPG key ID: CAD341EFA92DDDE5
3 changed files with 9 additions and 2 deletions

View file

@ -4,12 +4,18 @@ $bp-mid: 1000px;
$bp-little: 650px;
:root {
--text-color: #000
--text-color: #000;
}
@font-face {
font-family: "custom";
src: url("/static/font.woff2");
}
body {
--background-image: ;
font-size: 18px;
font-family: "custom", "serif";
background: var(--background-image) center fixed no-repeat;
background-size: cover;
color: var(--text-color);