diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-05-04 13:51:04 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-05-04 13:51:04 -0400 |
commit | 4cc518aed53c9efa29c8b9d2bd6157b9b9756fba (patch) | |
tree | a4f8fa61df77fd2e8a6cd9adbb6454a3d0675920 /css/website.css | |
parent | d9338ec24bc896b11863c08eaf051f3eaa24c554 (diff) | |
download | grav-sowtheme-4cc518aed53c9efa29c8b9d2bd6157b9b9756fba.tar.gz grav-sowtheme-4cc518aed53c9efa29c8b9d2bd6157b9b9756fba.tar.bz2 grav-sowtheme-4cc518aed53c9efa29c8b9d2bd6157b9b9756fba.zip |
Fix animation
Diffstat (limited to '')
-rw-r--r-- | css/website.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/css/website.css b/css/website.css index 6ff0919..a218cdf 100644 --- a/css/website.css +++ b/css/website.css @@ -177,14 +177,14 @@ and (max-device-width: 900px) /* animation */ @keyframes reveal2 { - from { opacity: 0; } + from { opacity: 0.1; } to { opacity: 1; } } .anim1,body { opacity: 0; - animation-delay: 0s; animation: reveal2 .5s forwards; + animation-delay: 0s; } .anim2,.content { |