diff --git a/.gitattributes b/.gitattributes index f9ed317..1212f5f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/static/comic-mono.ttf b/static/comic-mono.ttf new file mode 100644 index 0000000..cf95339 --- /dev/null +++ b/static/comic-mono.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc1425e922a16abf0ec767effe4d0268439b4c0dce98432e07d15f5dad57196 +size 18724 diff --git a/static/style.css b/static/style.css index 92fa582..529e85b 100644 --- a/static/style.css +++ b/static/style.css @@ -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; }