]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/_animations.scss
Merge branch 'master' into translations
[bookstack] / resources / assets / sass / _animations.scss
index e6e85ef8edb7e2e4c9f7785e2e2131f633e7ccaa..582d718c86ff741327e58761e357115ab58ea21c 100644 (file)
     transform: translate3d(0, 0, 0);
   }
 }
+
+@keyframes pointer {
+  0% {
+      transform: translate3d(0, 20px, 0) scale3d(0, 0, 0);
+  }
+  100% {
+      transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
+  }
+}
+
+.anim.pointer {
+  transform-origin: 50% 100%;
+  animation-name: pointer;
+  animation-duration: 180ms;
+  animation-delay: 0s;
+  animation-timing-function: cubic-bezier(.62, .28, .23, .99);
+}
\ No newline at end of file