From af1a0598cdb218a890bcb167bad752e6949d8643 Mon Sep 17 00:00:00 2001 From: BenjaminToby <52448020+BenjaminToby@users.noreply.github.com> Date: Wed, 26 May 2021 08:11:04 +0100 Subject: [PATCH] minor edit --- index.html | 2 +- main.css | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index f5e339d..0a0bde3 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@ -
+
diff --git a/main.css b/main.css index c096b1d..2781f3b 100644 --- a/main.css +++ b/main.css @@ -374,7 +374,7 @@ section.hero-section { .hero-image-blur { width: 500px; height: 500px; - background-color: rgba(0,0,0,0.1); + background-color: #0D2659; border-radius: 1000px; position: absolute; top: 0; @@ -382,6 +382,7 @@ section.hero-section { transform: translateZ(-400px); filter: blur(50px); z-index: -1; + opacity: .2; } .scroll-down-icon { @@ -396,17 +397,18 @@ section.hero-section { transition: all .3s ease-out; position: relative; animation: scrolldownicon 2s infinite; - animation-timing-function: ease-out; + animation-timing-function: ease-in-out; } .scroll-down-link-block:hover { border: none; opacity: 1; + animation-play-state: paused; } @keyframes scrolldownicon { 0% {top: 0;} - 50% {top: 10px;} + 50% {top: 20px;} 100% {top: 0;} }