site

bvnf.space sources
Log | Files | Refs

commit 8d543fe2a4a9c0c711110313a721f9c11b6437ee
parent fb032324de261eee64df9fdb1aa16898488c4e60
Author: aabacchus <ben@bvnf.space>
Date:   Wed, 28 Sep 2022 17:23:49 +0100

style: nicer

Diffstat:
Mstyle.css | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/style.css b/style.css @@ -1,16 +1,17 @@ body { - font-family: monospace; + font-family: serif; font-size: 16px; padding: 0 0.7em; margin: 1em auto; max-width: 78ch; color: black; - background: #eee; + background: #fff; } code { font-family: monospace; background: #ddd; - padding: 0.5px; + padding: 0.2ch; + border-radius: 5px; } table { width: 100%; @@ -29,13 +30,10 @@ header { } @media(prefers-color-scheme: dark) { body { - background: #292929; + background: #111; color: #fff; } - a { - color: #6cf; - } code { - background: #444; + background: #222; } }