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