29 lines
493 B
SCSS
29 lines
493 B
SCSS
/* 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);
|
|
} |