Embed Comic Mono

This commit is contained in:
Emi Simpson 2021-10-12 23:49:04 -04:00
parent 3e17391969
commit 8352c0f6d6
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: A12F2C2FFDC3D847
3 changed files with 13 additions and 1 deletions

1
.gitattributes vendored
View File

@ -1,2 +1,3 @@
*.ttf filter=lfs diff=lfs merge=lfs -text
*.otf filter=lfs diff=lfs merge=lfs -text
*olicy !text -filter -merge -diff

BIN
static/comic-mono.ttf (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,8 +1,16 @@
/* Fonts */
@font-face {
font-family: Comic Mono;
src: url(comic-mono.ttf);
/* Normally I'm against using fonts in websites, but I mean COME ON. This isn't
* Helvetica Clone 13, it's COMIC MONO. How iconic is that??? */
}
/* Basic styling */
body {
margin: 0;
color: white;
font-family: Comic Mono;
font-family: Comic Mono, monospace;
font-size: 1.2rem;
background-color: #141016;
}