diff options
author | Franck Cuny <franck@fcuny.net> | 2021-04-06 12:29:45 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-04-06 12:29:45 -0700 |
commit | 5e6b43d51cebf4d938d14d963326efb73da36312 (patch) | |
tree | a6591df69a6adaa4b2da456bdbf9ef4e246b7ecb /users/fcuny/notes | |
parent | layout: fix format for the date (diff) | |
download | world-5e6b43d51cebf4d938d14d963326efb73da36312.tar.gz |
css: change the default font
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/static/css/custom.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/users/fcuny/notes/static/css/custom.css b/users/fcuny/notes/static/css/custom.css index 45f9732..c84a013 100644 --- a/users/fcuny/notes/static/css/custom.css +++ b/users/fcuny/notes/static/css/custom.css @@ -1,13 +1,13 @@ -@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700'); +@import url('https://fonts.googleapis.com/css2?family=Roboto'); @import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400'); *, *:before, *:after { box-sizing: border-box; } body { - background-color: #ffffea; - line-height: 1.6rem; - font-size: 18px; - font-family: "Roboto Slab", serif; + background-color: #ffffff; + line-height: 1.5rem; + font-size: 16px; + font-family: "Roboto", Arial, sans-serif; color: #000; padding: 2rem; } |