From fc469087be04858bf3e1fd98c60afb520585887a Mon Sep 17 00:00:00 2001 From: elseif Date: Mon, 8 Sep 2025 10:22:15 +0800 Subject: [PATCH] Update index.html Signed-off-by: elseif --- index.html | 120 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 75 insertions(+), 45 deletions(-) diff --git a/index.html b/index.html index a2c36cc..30f5280 100644 --- a/index.html +++ b/index.html @@ -357,12 +357,31 @@ #command .url { color: #569cd6; } #command .version { color: #4ec9b0; font-weight: bold; } #command pre:hover {background-color: #2c2c2c;} + .loading { + display: none; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-style: italic; + color: gray; + background: rgba(255,255,255,0.9); + padding: 15px 25px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0,0,0,0.2); + z-index: 1000; + } + .loading i { + margin-right: 10px; + animation: fa-spin 1s linear infinite; + }