Commit 3aeda220 authored by Paul Kaplan's avatar Paul Kaplan

Make the remix button spin the correct the direction

parent a3afa5e4
......@@ -291,36 +291,27 @@ $stage-width: 480px;
animation-direction: normal;
width: 1.25rem;
height: 1.25rem;
-webkit-animation-name: intro, spin;
-webkit-animation-duration: .25s, .75s;
-webkit-animation-iteration-count: 1, infinite;
-webkit-animation-delay: 0s, .25s;
-webkit-animation-timing-function: cubic-bezier(.3, -3, .6, 3), ease-out;
transform-origin: center;
transform-origin: 55% 55%;
}
@keyframes remix-intro {
0% {
transform: scale(0);
opacity: 0;
-webkit-transform: scale(0);
}
100% {
transform: scale(1);
opacity: 1;
-webkit-transform: scale(1);
}
}
@keyframes remix-spin {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
transform: rotate(360deg);
}
100% {
transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(0deg);
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment