diff --git a/public/index.html b/public/index.html index 929de155d..3ea4b79ec 100644 --- a/public/index.html +++ b/public/index.html @@ -1,6 +1,6 @@ -
+ @@ -20,52 +20,71 @@ display: flex; justify-content: center; align-items: center; - background-color: white; + background-color: rgba(255, 255, 255, 0.98); z-index: 9999; } .spinner { - width: 50px; - height: 50px; - border: 5px solid rgba(0, 0, 0, 0.1); + width: 40px; + height: 40px; + border: 3px solid transparent; + border-top-color: var(--color-primary); border-radius: 50%; - border-top-color: #3498db; - animation: spin 1s infinite linear; + animation: spin 1s linear infinite; + } + + .spinner::after { + content: ''; + position: absolute; + top: -3px; + left: -3px; + width: 40px; + height: 40px; + border: 3px solid transparent; + border-top-color: rgba(64, 158, 255, 0.2); + border-radius: 50%; + animation: spin 2s linear infinite; } @keyframes spin { - to { + 0% { + transform: rotate(0deg); + } + 100% { transform: rotate(360deg); } } - - - - -