diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-23 10:53:47 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-01-22 20:38:21 -0500 |
commit | f6621374817908ec5936caf635bae9bcd20b3ad1 (patch) | |
tree | f6f8733af33051f0a810b5ba04c3260454480403 | |
parent | 26ea278c29dbb19d003dddda2e60559c502d0cc3 (diff) |
Move body font settings to root
-rw-r--r-- | ext/mixed/css/display.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index d2b6bada..d8e42bfb 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -35,10 +35,13 @@ html:root[data-yomichan-page=float]:not([data-yomichan-theme]) body { background-color: transparent; } -body { +:root { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; /* 14px => 20px */ +} + +body { margin: 0; border: 0; padding: 0; |