This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/jetpack/scss/atoms/_animations.scss

41 lines
600 B
SCSS
Raw Normal View History

2018-03-21 18:19:20 +00:00
// ==========================================================================
// Animation for miles!
// ==========================================================================
@keyframes "grow" {
0% {
transform: scale(.3);
}
60% {
transform: scale(1.15);
}
100% {
transform: scale(1);
}
}
@keyframes "candy" {
0% {
transform: scale(1);
}
20% {
transform: scale(1.15);
}
60% {
transform: scale(.95);
}
100% {
transform: scale(1);
}
}
@keyframes "flyer" {
0% {
transform: translate3d(0px, 0px, 0px);
}
100% {
transform: translate3d(680px, -680px, 0px);
}
}