From 1a83c67e2c71f861b66d9a01159bafa2c9ca41c8 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 29 Jan 2024 02:01:51 +0100 Subject: [PATCH] feat: Font smoothing (#605) --- web/css/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/css/style.css b/web/css/style.css index d17bfa2..05e0792 100644 --- a/web/css/style.css +++ b/web/css/style.css @@ -1,7 +1,11 @@ body { color: white; background-color: #125bdb; - font-family: Verdana, Arial, sans-serif; + font-smoothing: antialiased; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + font-family: Verdana, Geneva, sans-serif; + text-shadow: 1px 1px 1px rgba(0,0,0,0.3); } #content {