/* Logo animation */
@keyframes color-rotate {
from {
filter: hue-rotate(0deg);
}
to {
filter: hue-rotate(360deg);
}
}
.logo:hover {
animation : color-rotate 1s;
animation-iteration-count: infinite;
animation-direction : alternate;
}
Created
August 27, 2021 02:29
-
-
Save belachkar/fbc20910f31c801132c71ccd39502906 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment