From 695ef7ed0cd9a8e064225a313e327f5d0b0b15cb Mon Sep 17 00:00:00 2001 From: Adarsh Jena <76236137+adarshnjena@users.noreply.github.com> Date: Thu, 7 Apr 2022 09:51:03 +0530 Subject: [PATCH] Add files via upload --- thankyou.css | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ thankyou.html | 39 +++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 thankyou.css create mode 100644 thankyou.html diff --git a/thankyou.css b/thankyou.css new file mode 100644 index 0000000..9e73146 --- /dev/null +++ b/thankyou.css @@ -0,0 +1,54 @@ +@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"); + +body{ + font-family: Poppins, sans-serif; +} + +.check { + fill: none; + stroke: rgb(27, 76, 168); + stroke-width: 2px; + stroke-linecap: round; + stroke-linejoin: round; + stroke-miterlimit: 10; +} + +.check { + stroke-dasharray: 60 200; + animation-delay: 1.7s; + animation: check 2s cubic-bezier(0.67, 0, 0.1, 1) forwards 0s; + opacity: 0; +} + +@keyframes check { + from { + stroke-dashoffset: 60; + opacity: 1; + } + + to { + stroke-dashoffset: 293; + opacity: 1; + } +} + +.thankyou { + display: block; + width: 100%; + align-items: center; + justify-content: center; + margin-top: 25vh; +} + +h2 { + margin-bottom: 10px; +} + +p { + margin-bottom: 30px; +} + +.smaller { + width: 130px; + margin: 20px auto -50px auto; +} \ No newline at end of file diff --git a/thankyou.html b/thankyou.html new file mode 100644 index 0000000..79683ab --- /dev/null +++ b/thankyou.html @@ -0,0 +1,39 @@ + + + + + + + + + ThankYou!! + + + +
+
+ + + +
+ +

Thank You!

+

Back to Website

+
+ +