switching to gmap3

This commit is contained in:
2015-12-10 23:12:50 +01:00
parent a52307af80
commit 47ef0bae24
23 changed files with 384895 additions and 30 deletions

29
style/_common.scss Normal file
View 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);
}