@trap_stevo/legendarybuilderproreact-ui
Version:
The legendary UI & utility API that makes your application a legendary application. ~ Created by Steven Compton
46 lines (29 loc) • 1.03 kB
CSS
/*
Created by Hassan Steven Compton.
March 7, 2024.
*/
/* HUD Essential Animations */
@keyframes glow {
0%, 100% {
text-shadow : 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 70px rgba(255, 255, 255, 0.8);
}
50% {
text-shadow : 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 70px rgba(255, 255, 255, 0.8), 0 0 80px rgba(255, 255, 255, 0.8);
}
}
@keyframes pulse {
0%, 100% {
transform : scale(1);
}
50% {
transform : scale(1.05);
}
}
@keyframes rotateBackground {
0% {
transform : rotate(0deg);
}
100% {
transform : rotate(360deg);
}
}