From 86aea340eb14818da027a4f66bf4b7c4398d012b Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 3 Aug 2015 11:28:30 +0200 Subject: [PATCH] try some animations --- app/styles/app.scss | 1 + app/styles/app/animation/wheelbarrow.sass | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 app/styles/app/animation/wheelbarrow.sass diff --git a/app/styles/app.scss b/app/styles/app.scss index 108cc3d8..0b9c0e30 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -38,6 +38,7 @@ @import "app/modules/forms"; @import "app/modules/notice"; +@import "app/animation/wheelbarrow"; @import "app/layout"; @import "app/layouts/dashboard"; diff --git a/app/styles/app/animation/wheelbarrow.sass b/app/styles/app/animation/wheelbarrow.sass new file mode 100644 index 00000000..6681466d --- /dev/null +++ b/app/styles/app/animation/wheelbarrow.sass @@ -0,0 +1,18 @@ +#wheelbarrow + + +#small-box + display: none + +#big-box + transform-origin: center center + animation: + + + +@keyframes bigBox + 0% + transform: translate(11%, -25%)rotateZ(5deg) + + 100% + transform: translate(0, 0)rotateZ(0) \ No newline at end of file