summaryrefslogtreecommitdiffstats
path: root/css/animations.scss
diff options
context:
space:
mode:
Diffstat (limited to 'css/animations.scss')
-rw-r--r--css/animations.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/css/animations.scss b/css/animations.scss
new file mode 100644
index 00000000..ab49c84e
--- /dev/null
+++ b/css/animations.scss
@@ -0,0 +1,16 @@
+@keyframes pulse {
+ 0% {
+ box-shadow: 0 0 0 0 rgba(50, 50, 50, .4);
+ }
+ 70% {
+ box-shadow: 0 0 0 15px rgba(50, 50, 50, 0);
+ }
+ 100% {
+ box-shadow: 0 0 0 0 rgba(50, 50, 50, 0);
+ }
+}
+
+[class*='--pulse '],
+[class$='--pulse'] {
+ animation: pulse 1.5s infinite;
+} \ No newline at end of file