]> BookStack Code Mirror - bookstack/blobdiff - resources/sass/_animations.scss
ZIP Imports: Added API examples, finished testing
[bookstack] / resources / sass / _animations.scss
index f1aa3139b8ea7aff9f01088d8a680584b483e9c1..ccbe36161b67c0a4d0781b16283fc6d50f0f94ca 100644 (file)
   animation-duration: 180ms;
   animation-delay: 0s;
   animation-timing-function: cubic-bezier(.62, .28, .23, .99);
+}
+
+@keyframes highlight {
+  0% {
+    background-color: var(--color-primary-light);
+  }
+  33% {
+    background-color: transparent;
+  }
+  66% {
+    background-color: var(--color-primary-light);
+  }
+  100% {
+    background-color: transparent;
+  }
+}
+
+.anim-highlight {
+  animation-name: highlight;
+  animation-duration: 2s;
+  animation-delay: 0s;
+  animation-timing-function: linear;
 }
\ No newline at end of file