diff --git a/login.css b/login.css index 9bfaca7..01c44d2 100644 --- a/login.css +++ b/login.css @@ -229,6 +229,12 @@ input:focus { .f2 { top: 65%; right: 12%; animation-delay: .7s; } .f3 { top: 22%; right: 55%; animation-delay: 1.1s; } .f4 { bottom: 15%; left: 28%; animation-delay: .9s; } +.f5 { bottom: 10%; right: 30%; animation-delay: 1.4s; } +.f6 { top: 40%; left: 50%; animation-delay: .5s; } +.f7 { bottom: 30%; left: 15%; animation-delay: 1.2s; } +.f8 { top: 75%; right: 40%; animation-delay: .8s; } +.f9 { top: 50%; left: 80%; animation-delay: 1s; } +.f10 { bottom: 20%; right: 5%; animation-delay: 1.3s; } @keyframes float { 0% { transform: translateY(0) rotate(0deg); } @@ -240,4 +246,11 @@ input:focus { 0% { transform: translateX(0); } 50% { transform: translateX(15px); } 100% { transform: translateX(0); } -} \ No newline at end of file +} + +.login-card, .container { + transition: transform .4s ease; +} +.login-card:hover, .container:hover { + transform: scale(1.012); +} diff --git a/login.html b/login.html index 1c64573..691fcfb 100644 --- a/login.html +++ b/login.html @@ -16,6 +16,17 @@
+ + + + + + + + + + +
diff --git a/login.js b/login.js index 54a4059..e41d77a 100644 --- a/login.js +++ b/login.js @@ -85,3 +85,11 @@ document.addEventListener("DOMContentLoaded", function () { } }); +setInterval(() => { + document.querySelectorAll(".glitter").forEach(g => { + g.style.setProperty("--x", (Math.random() * 200 - 100) + "px"); + g.style.setProperty("--y", (Math.random() * 200 - 100) + "px"); + g.style.left = Math.random() * window.innerWidth + "px"; + g.style.top = Math.random() * window.innerHeight + "px"; + }); +}, 900);