commit 273ecfa3d9ec9d159eaf2cd0e88c7359034cd31b parent 055ad45c62946a687cc8dd790d471a9b575b0770 Author: Francisco Boudagh <franciscoboudagh1@gmail.com> Date: Fri, 17 Dec 2021 22:40:17 +0100 added delay Diffstat:
| M | style.css | | | 14 | +++++++++----- |
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/style.css b/style.css @@ -120,10 +120,13 @@ footer{ margin-top: 25%; display: none; opacity: 0; - transition: opacity 1s linear 1s; + animation: sexy 20s linear; + opacity: 0; + transition: opacity .3s ease-in-out; + transition-delay: 2s; } -#fact_text:hover { - top: 0; - opacity: 1; -} +@keyframes sexy { + 0% { opacity: 0; } + 100% { opacity: 1; } +} +\ No newline at end of file