summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/scss/atoms/_animations.scss')
-rw-r--r--plugins/jetpack/scss/atoms/_animations.scss40
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/jetpack/scss/atoms/_animations.scss b/plugins/jetpack/scss/atoms/_animations.scss
new file mode 100644
index 00000000..2672eb75
--- /dev/null
+++ b/plugins/jetpack/scss/atoms/_animations.scss
@@ -0,0 +1,40 @@
+// ==========================================================================
+// 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);
+ }
+}