1
0
Fork 0
mirror of synced 2024-06-30 02:21:08 -04:00
yadm/_sass/_animations.scss

21 lines
336 B
SCSS
Raw Normal View History

2016-09-06 23:18:34 -04:00
/* ==========================================================================
ANIMATIONS
========================================================================== */
@-webkit-keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}