From 635deb785583d7f8ad03ceb6292b9c6a9cf31895 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Thu, 14 Jul 2022 18:58:57 -0400 Subject: [PATCH] New font and cool animations --- index.html | 8 ++++---- style.scss | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 5000ebb..4e2e97e 100644 --- a/index.html +++ b/index.html @@ -4,16 +4,16 @@ - +
diff --git a/style.scss b/style.scss index 4ec60e2..39d7fb4 100644 --- a/style.scss +++ b/style.scss @@ -1,4 +1,5 @@ $font-edu-vic: 'Edu VIC WA NT Beginner', cursive; +$font-righteous: 'Righteous', cursive; $color-bg: #2b0202; $color-logo: #e0a94a; @@ -25,11 +26,35 @@ header { } nav { + display: flex; + align-items: center; + font-family: $font-righteous; ul { margin: 0%; li { display: inline; + list-style: none; + a { + color: $color-logo-shadow; + font-size: 24pt; + padding-left: 12pt; + text-decoration: none; + } + a:hover { + color: $color-logo; + filter: drop-shadow(1px 1px 0px $color-logo-shadow); + animation-name: light-up; + animation-duration: 0.5s; + } } } } +@keyframes light-up { + 0% { + color: $color-logo-shadow; + } + 100% { + color: $color-logo; + } +}