summaryrefslogtreecommitdiffstats
path: root/css/_animations.scss
blob: 27d29e3d3d6a0d574c7f7378311ac26275061c86 (plain)
1
2
3
4
5
6
7
8
9
10
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);
	}
}