From e28e493343f5601b94adbaef20a20273e05b906e Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 18 Feb 2024 01:00:12 +0800 Subject: [PATCH] Make loading transparent --- style.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 7c433ce..2d71f0d 100644 --- a/style.css +++ b/style.css @@ -38,13 +38,15 @@ canvas { cursor: pointer; } +body { + background-color: black; +} + #loadingOverlay { position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: #222222; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); display: flex; justify-content: center; align-items: center;