From a744948bd78006e6619be3b3f0af35fadaa06477 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Fri, 18 Dec 2020 22:53:55 +0100 Subject: [PATCH] Remove small font sizing --- time.html | 9 --------- 1 file changed, 9 deletions(-) diff --git a/time.html b/time.html index c397bd0..066d189 100644 --- a/time.html +++ b/time.html @@ -10,7 +10,6 @@ const lightColor = "#ffffff"; const fontSizeFallbackPx = 300; const intervalMillisec = 200; const bigFontSizeFactor = 1.2; -const smallFontSizeFactor = 1.05; let light = false; let help = false; @@ -72,14 +71,6 @@ function keyPress(event) { fontSizePx = fontSizeFallbackPx; setSize(); break; - case "*": - fontSizePx *= smallFontSizeFactor; - setSize(); - break; - case "_": - fontSizePx /= smallFontSizeFactor; - setSize(); - break; case "h": toggleHelp(); break;