Ai still sucks

This commit is contained in:
Anushlinux
2025-07-05 00:01:05 +05:30
parent efbdd43780
commit 8582493faf
4 changed files with 490 additions and 22 deletions

View File

@@ -128,3 +128,51 @@
.animate-bounce-slow { animation: bounce-slow 2.5s infinite; }
.animate-fade-in { animation: fade-in 1.2s 0.5s both; }
.animate-ripple { animation: ripple 0.6s linear; }
/* Navbar specific animations */
@keyframes slide-in-from-top-2 {
from {
opacity: 0;
transform: translateY(-8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes scale-in {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes glow-pulse {
0%, 100% {
box-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
}
50% {
box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}
}
.animate-in {
animation-fill-mode: both;
}
.slide-in-from-top-2 {
animation: slide-in-from-top-2 0.2s ease-out;
}
.scale-in {
animation: scale-in 0.2s ease-out;
}
.glow-pulse {
animation: glow-pulse 2s ease-in-out infinite;
}