summaryrefslogtreecommitdiffstats
path: root/css/animations.scss
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-09-25 10:41:57 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-09-25 14:53:28 +0200
commit6e4c413aef45f681805a587938096c45e049eae2 (patch)
treedcd15b1b721d27822f43d2ec4df21dad32e30779 /css/animations.scss
parent563b1868a5552e04e7a8b91fab14525429f107d3 (diff)
Css pulse and warning on unsaved vcards
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
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