diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-27 08:58:56 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-27 08:58:56 -0700 |
commit | 789fafc988691ccaff06dfd8cfbe16cf0274405c (patch) | |
tree | ba1c0844f55ed90962ea94ad08d284d1e20cd301 | |
parent | ref(content): set correct headers for notes (diff) | |
download | fcuny.net-789fafc988691ccaff06dfd8cfbe16cf0274405c.tar.gz |
ref(css): set font family to sans-serif; darker background for code
-rw-r--r-- | static/css/custom.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/css/custom.css b/static/css/custom.css index 07825ee..2a7ac20 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -4,6 +4,7 @@ body { margin: 1em auto; padding: 0 0.55em; max-width: 49rem; + font-family: "sans-serif"; } h1,h2,h3,h4 { @@ -81,7 +82,7 @@ pre { overflow-x: auto; border: 1px solid #eee; border-radius: 3px; - background-color: #fafafa; + background-color: #eee; } #meta { |