From b247a132709eb212fef4f77c4912dc0ec108f36b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 29 May 2019 14:39:49 +0200 Subject: Add success icon on registration --- client/src/app/signup/success.component.scss | 74 ---------------------------- 1 file changed, 74 deletions(-) delete mode 100644 client/src/app/signup/success.component.scss (limited to 'client/src/app/signup/success.component.scss') diff --git a/client/src/app/signup/success.component.scss b/client/src/app/signup/success.component.scss deleted file mode 100644 index 7c66e08cf..000000000 --- a/client/src/app/signup/success.component.scss +++ /dev/null @@ -1,74 +0,0 @@ -svg { - width: 100px; - display: block; - margin: 40px auto 0; -} - -.path { - stroke-dasharray: 1000; - stroke-dashoffset: 0; - - &.circle { - -webkit-animation: dash .9s ease-in-out; - animation: dash .9s ease-in-out; - } - - &.line { - stroke-dashoffset: 1000; - -webkit-animation: dash .9s .35s ease-in-out forwards; - animation: dash .9s .35s ease-in-out forwards; - } - - &.check { - stroke-dashoffset: -100; - -webkit-animation: dash-check .9s .35s ease-in-out forwards; - animation: dash-check .9s .35s ease-in-out forwards; - } -} - -p { - text-align: center; - margin: 20px 0 60px; - font-size: 1.25em; - - &.success { - color: #73AF55; - } -} - - -@-webkit-keyframes dash { - 0% { - stroke-dashoffset: 1000; - } - 100% { - stroke-dashoffset: 0; - } -} - -@keyframes dash { - 0% { - stroke-dashoffset: 1000; - } - 100% { - stroke-dashoffset: 0; - } -} - -@-webkit-keyframes dash-check { - 0% { - stroke-dashoffset: -100; - } - 100% { - stroke-dashoffset: 900; - } -} - -@keyframes dash-check { - 0% { - stroke-dashoffset: -100; - } - 100% { - stroke-dashoffset: 900; - } -} -- cgit v1.2.3