summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/scss/atoms/_animations.scss')
-rw-r--r--plugins/jetpack/scss/atoms/_animations.scss18
1 files changed, 18 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..8f032271
--- /dev/null
+++ b/plugins/jetpack/scss/atoms/_animations.scss
@@ -0,0 +1,18 @@
+// ==========================================================================
+// Animation for miles!
+// ==========================================================================
+
+@keyframes "candy" {
+ 0% {
+ transform: scale(1);
+ }
+ 20% {
+ transform: scale(1.15);
+ }
+ 60% {
+ transform: scale(.95);
+ }
+ 100% {
+ transform: scale(1);
+ }
+}