From 820999d4a8c8f127d73a36ccc66af6354ff63627 Mon Sep 17 00:00:00 2001
From: Geoffrey Wang <geoffreywwang@gmail.com>
Date: Fri, 22 May 2020 18:35:46 +0000
Subject: [PATCH] Fix for #21 (and #14)

---
 assets/css/style.css |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/assets/css/style.css b/assets/css/style.css
index 3e70a48..4d2de90 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -9,6 +9,7 @@
   --pre-bg-color: #f9f9fd;
   --nav-text-color:#5a5a5a;
   --tag-color: #424242;
+  transition: all .8s;
 }
 
 html[data-theme='dark'] {
@@ -97,6 +98,7 @@
 /*basic styles ends*/
 /*animation starts*/
 .animated {
+  transition: all .8s;
   -webkit-animation-fill-mode: both;
   -moz-animation-fill-mode: both;
   -ms-animation-fill-mode: both;
@@ -124,7 +126,6 @@
   }
   100% {
     opacity: 1;
-    background-color: var(--bg-color);
     -webkit-transform: translateY(0);
   }
 }
@@ -135,7 +136,6 @@
   }
   100% {
     opacity: 1;
-    background-color: var(--bg-color);
     -moz-transform: translateY(0);
   }
 }
@@ -146,7 +146,6 @@
   }
   100% {
     opacity: 1;
-    background-color: var(--bg-color);
     -o-transform: translateY(0);
   }
 }
@@ -157,7 +156,6 @@
   }
   100% {
     opacity: 1;
-    background-color: var(--bg-color);
     transform: translateY(0);
   }
 }
@@ -242,7 +240,6 @@
   background-size: cover;
   background-color: var(--bg-color);
   height: 100%;
-  transition: 0.8s;
   top: 0;
   left: 0;
   position: fixed;

--
Gitblit v1.10.0