From ba8170cc160bd6bf9b671830617033fb43404499 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Wed, 2 Sep 2020 21:18:32 +0530 Subject: [PATCH] Loading icon + Push notifications --- index.html | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 84 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index adededc..0a3ddd1 100644 --- a/index.html +++ b/index.html @@ -303,6 +303,33 @@ width: 14rem; } + .spinner { + animation: Rotate 2.4s both infinite linear; +} +.path { + animation: DrawLine 1.6s both infinite alternate linear; + fill: none; + stroke: #000; + stroke-width: 50; +} +@keyframes Rotate { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +@keyframes DrawLine { + 0% { + stroke-dasharray: 0 126; + } + 100% { + stroke-dasharray: 126 126; + } +} + + /*________________________________________________________________________________________________________________________________*/ /*MEDIAQUERIES*/ @@ -382,7 +409,59 @@ -->
-
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +