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); } + }