21 lines
354 B
CSS
21 lines
354 B
CSS
@keyframes scroll {
|
|
0% {
|
|
transform: translateX(0%);
|
|
}
|
|
100% {
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
|
|
.animate-scroll {
|
|
animation: scroll 69s linear infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
0%, 100% { background-color: #0a6eb2}
|
|
50% { background-color: #ffff00; color: black; }
|
|
}
|
|
|
|
.blink-yellow {
|
|
animation: blink 3s steps(1,end) infinite;
|
|
} |