From 3e8b34be2fdeccf16c8b46f1ee518f970853768d Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Tue, 24 Oct 2017 16:59:48 -0400 Subject: Adding in materialize source and templates --- .../static/materialize/sass/components/_pulse.scss | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/dispatch/static/materialize/sass/components/_pulse.scss (limited to 'app/dispatch/static/materialize/sass/components/_pulse.scss') diff --git a/app/dispatch/static/materialize/sass/components/_pulse.scss b/app/dispatch/static/materialize/sass/components/_pulse.scss new file mode 100644 index 0000000..a3b7d9f --- /dev/null +++ b/app/dispatch/static/materialize/sass/components/_pulse.scss @@ -0,0 +1,34 @@ +.pulse { + &::before { + content: ''; + display: block; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + background-color: inherit; + border-radius: inherit; + transition: opacity .3s, transform .3s; + animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite; + z-index: -1; + } + + overflow: initial; + position: relative; +} + +@keyframes pulse-animation { + 0% { + opacity: 1; + transform: scale(1); + } + 50% { + opacity: 0; + transform: scale(1.5); + } + 100% { + opacity: 0; + transform: scale(1.5); + } +} -- cgit v1.2.3