From a58477ac2d7dc2879f500010f5b78082a2810981 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Sun, 2 Mar 2025 03:16:41 -0600 Subject: [PATCH] randomize the font size --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index abd292f..0a0a7a8 100644 --- a/index.html +++ b/index.html @@ -64,6 +64,7 @@ document.getElementById("style").innerHTML=`* { background-color: ${color()}; color: #000000; + font-size: ${Math.floor(100+(Math.random()*100))}; font-family: ${font()}, monospace; } label { @@ -81,6 +82,7 @@ color: ${color()}; } h1 { + font-size: 200%; color: ${color()}; } p { @@ -172,5 +174,5 @@