Pulse animation

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-09-13 22:41:55 +02:00
parent 5c343999e4
commit 78b33092a1
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
2 changed files with 12 additions and 0 deletions

11
css/_animations.scss Normal file
View File

@ -0,0 +1,11 @@
@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);
}
}

View File

@ -3,3 +3,4 @@
@import "contactlist";
@import "navigation";
@import "settings";
@import "animations";