diff --git a/review/reviewed.css b/review/reviewed.css index b667ea8..feea921 100644 --- a/review/reviewed.css +++ b/review/reviewed.css @@ -1,3 +1,7 @@ +@font-face { + font-family: mononoki; + src: url(https://files.amy.rip/Mononoki-Regular.woff2); +} textarea { resize: none; } @@ -20,7 +24,6 @@ textarea { margin-bottom: 10%; font-size: xx-large; background-color: #1e1e1e; - font-family: monospace; outline: none; border: none; text-align: center; diff --git a/src/App.css b/src/App.css index fcf7985..c7a893b 100644 --- a/src/App.css +++ b/src/App.css @@ -1,13 +1,18 @@ +@font-face { + font-family: mononoki; + src: url(https://files.amy.rip/Mononoki-Regular.woff2); +} :root { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; + font-family: "mononoki", monospace; + font-size: smaller; user-select: none; /* browsers agreeing on stuff challenge (impossible) */ background-color: #121212; - font-family: monospace; overflow-x: hidden; color: #ffc8dd; }