From ec008a57f034127d19556e8cf8503e5c5fecbd21 Mon Sep 17 00:00:00 2001 From: Xcode07 <148679984+pajardev@users.noreply.github.com> Date: Sat, 22 Jun 2024 20:09:36 +0700 Subject: [PATCH] Update CekSemua.html --- CekSemua.html | 179 ++++++++++++++++++++++++++++---------------------- 1 file changed, 99 insertions(+), 80 deletions(-) diff --git a/CekSemua.html b/CekSemua.html index 789d5a0..de4cf30 100644 --- a/CekSemua.html +++ b/CekSemua.html @@ -70,22 +70,46 @@ margin-bottom: 20px; border-radius: 5px; } + .admin-link { + color: #fff; + text-decoration: none; + } + .admin-link:hover { + text-decoration: underline; + } + .loading { + display: none; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + border: 8px solid #f3f3f3; + border-radius: 50%; + border-top: 8px solid #007BFF; + width: 60px; + height: 60px; + animation: spin 1s linear infinite; + } + @keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } + }