Fixed page title and description being visible before fading in (#268)

This commit is contained in:
Matthias 2016-10-24 15:15:01 +02:00 committed by John O'Nolan
parent d07d6dee09
commit 5060c945e6
1 changed files with 2 additions and 2 deletions

View File

@ -976,13 +976,13 @@ body.nav-opened .nav {
/* Add subtle load-in animation for content on the home page */
.home-template .page-title {
-webkit-animation: fade-in-down 0.6s;
animation: fade-in-down 0.6s;
animation: fade-in-down 0.6s both;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.home-template .page-description {
-webkit-animation: fade-in-down 0.9s;
animation: fade-in-down 0.9s;
animation: fade-in-down 0.9s both;
-webkit-animation-delay: 0.1s;
animation-delay: 0.1s;
}