From cc53246d76f2c1286a0a8fbda2e8f976c1b61b8c Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 29 May 2020 00:56:49 -0400 Subject: [PATCH] Add spinny and status messages --- loading/index.html | 83 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 80 insertions(+), 3 deletions(-) diff --git a/loading/index.html b/loading/index.html index bab8106..3bced40 100644 --- a/loading/index.html +++ b/loading/index.html @@ -31,7 +31,7 @@ background-color: red; } - #percentage { + #status { font-size: 25px; font-weight: bold; width: 100%; @@ -42,16 +42,84 @@ width: 540px; } } + + #logo { + height: 70px; + width: 70px; + margin: 10px; + } + .spin { + animation: spin 2s linear infinite; + } + @keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + } + +
-
+
0%