From b6e5538d8d324803d785a4e40de2fe9d5aa0740b Mon Sep 17 00:00:00 2001
From: Chuck Dries
Date: Thu, 16 Nov 2017 20:13:51 -0700
Subject: [PATCH] Scrollprompt is better!
---
css/style.css | 3 ++-
index.html | 4 ++--
sass/style.scss | 4 +++-
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/css/style.css b/css/style.css
index 33758f1..26f256f 100644
--- a/css/style.css
+++ b/css/style.css
@@ -336,7 +336,8 @@ body {
-moz-animation: 2s ease fadeIn;
-webkit-animation: 2s ease fadeIn;
-o-animation: 2s ease fadeIn;
- animation: 2s ease fadeIn; }
+ animation: 2s ease fadeIn;
+ color: #91EFFF; }
@media (max-width: 800px) {
#mast {
diff --git a/index.html b/index.html
index 7fcffe5..7f828ef 100644
--- a/index.html
+++ b/index.html
@@ -63,7 +63,7 @@
Blog /
Public Key
- Scroll down!
+ Scroll down👇
@@ -105,7 +105,7 @@
- Java
- - C, C# with Unity, & C++
+ - C# with Unity, & C++
- Python
- Scheme
- Bash
diff --git a/sass/style.scss b/sass/style.scss
index bf6364a..bdb6385 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -291,7 +291,9 @@
#scrollprompt {
// @include prefix(animation, 1s 1.1s 1 prompt)
- @include prefix(animation, 2s ease fadeIn)
+ @include prefix(animation, 2s ease fadeIn);
+ color: $blue;
+ // font-style: italic;
}
@include respond-to($width) {
|