10 lines
197 B
SCSS
10 lines
197 B
SCSS
/*
|
|
** Earth icon
|
|
*/
|
|
.anim-earth {
|
|
animation: moveEarth 4s linear infinite;
|
|
}
|
|
@keyframes moveEarth {
|
|
0% { transform: translate3d(-87px, 0, 0); }
|
|
100% { transform: translate3d(0,0,0); }
|
|
} |