From 5f33a7063570ca47071c1863c3aa7b29b760233e Mon Sep 17 00:00:00 2001 From: Tobias Messner Date: Mon, 6 Jan 2025 17:53:05 +0100 Subject: [PATCH] fix: Don't use the default font for the connecting UI Previously, the connecting UI used the browser's default font (which is often an ugly serif one). Change it to the font used everywhere else and replace one font usage to make them consistent everywhere. --- html5/css/client.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html5/css/client.css b/html5/css/client.css index 63e09d25..2ea0302f 100644 --- a/html5/css/client.css +++ b/html5/css/client.css @@ -43,6 +43,7 @@ div#disconnect_form { } .overlay { background-color: black; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; position: fixed; top: 0; right: 0; @@ -124,7 +125,7 @@ canvas { background-color: transparent; } .windowtitle { - font-family: Arial, Helvetica, sans-serif; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; display: inline-block; float: left; position: absolute;