Guide_Panda/_sass/_animations.scss
2016-11-11 19:24:21 -05:00

21 lines
336 B
SCSS

/* ==========================================================================
ANIMATIONS
========================================================================== */
@-webkit-keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}