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;
+ }
+}