24 lines
391 B
SCSS
24 lines
391 B
SCSS
/*
|
|
** Globe
|
|
*/
|
|
// Marker
|
|
@keyframes globeMarkerPulse {
|
|
0% {
|
|
box-shadow: 0 0 0 0 rgba($color-secondary, 1);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 32px rgba(#fff, 0);
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
** Earth icon
|
|
*/
|
|
.anim-earth {
|
|
animation: moveEarth 3.5s linear infinite;
|
|
}
|
|
@keyframes moveEarth {
|
|
0% { transform: translate3d(0,0,0); }
|
|
100% { transform: translate3d(-87px, 0, 0); }
|
|
} |