From ef8f785a932e2ec65f52a0e8b0312dce70ee5fcc Mon Sep 17 00:00:00 2001 From: verymeticulous <82035192+verymeticulous@users.noreply.github.com> Date: Fri, 30 Jul 2021 13:27:14 -0400 Subject: [PATCH] Delete style.css --- style.css | 65 ------------------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 style.css diff --git a/style.css b/style.css deleted file mode 100644 index 5858234..0000000 --- a/style.css +++ /dev/null @@ -1,65 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Fira+Mono:wght@500&display=swap'); -body{ - height: 95vh; - background: #000000; - text-align: center; - color: #E0E0E0; - font-family: 'Fira Mono', monospace; -} -h1{ - font-size: 2.5rem; - font-family: 'Permanent Marker', cursive; -} -div{ - transform-style: preserve-3d; -} -svg{ - width: clamp(300px , 70% , 600px); - height: 500px; - -} -#rocket{ - - transform: translateY(750px); - - animation: launch 2s ease-out forwards; -} - -@keyframes launch { - from { - transform: translateY(750px); - } - to{ - perspective: 500px; - transform: translateY(0px); - } -} -#stars { - animation: twinkling 2s linear ; -} -@keyframes twinkling { - - from{ - transform: scale(0); - } - to{ - transform: scale(1); - } -} -.text{ - opacity: 0; - animation:appear 1s ease-in forwards; - animation-delay: 1.8s; -} -@keyframes appear { - from{ - opacity: 0; - } - to{ - opacity: 1; - } -} -a{ - color:#F66947; - text-decoration: none; -}