41 lines
581 B
CSS
41 lines
581 B
CSS
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes glitch {
|
|
0% {
|
|
text-shadow:
|
|
2px 0 #ff00c8,
|
|
-2px 0 #00fff9;
|
|
}
|
|
|
|
25% {
|
|
text-shadow:
|
|
-2px 0 #ff00c8,
|
|
2px 0 #00fff9;
|
|
}
|
|
|
|
50% {
|
|
text-shadow:
|
|
2px 0 #00fff9,
|
|
-2px 0 #ff00c8;
|
|
}
|
|
|
|
75% {
|
|
text-shadow:
|
|
-1px 0 #00fff9,
|
|
1px 0 #ff00c8;
|
|
}
|
|
|
|
100% {
|
|
text-shadow:
|
|
2px 0 #ff00c8,
|
|
-2px 0 #00fff9;
|
|
}
|
|
} |