switching to gmap3
This commit is contained in:
29
style/_common.scss
Normal file
29
style/_common.scss
Normal file
@@ -0,0 +1,29 @@
|
||||
/* Animations */
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
from { opacity: 0.3; }
|
||||
}
|
||||
@-moz-keyframes fadeIn {
|
||||
from { opacity: 0.3; }
|
||||
}
|
||||
@-ms-keyframes fadeIn {
|
||||
from { opacity: 0.3; }
|
||||
}
|
||||
@-o-keyframes fadeIn {
|
||||
from { opacity: 0.3; }
|
||||
}
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0.3; }
|
||||
}
|
||||
|
||||
@mixin animate($anim) {
|
||||
-webkit-animation: $anim;
|
||||
-moz-animation: $anim;
|
||||
-ms-animation: $anim;
|
||||
-o-animation: $anim;
|
||||
animation: $anim;
|
||||
}
|
||||
|
||||
.flicker {
|
||||
@include animate(fadeIn 0.8s infinite alternate);
|
||||
}
|
||||
Reference in New Issue
Block a user