From 752a86254b265f683318944371079f8145ea078e Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Fri, 15 Apr 2022 11:14:41 -0500 Subject: [PATCH] Fade out highlight color in manual style --- www/css/manual.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/www/css/manual.css b/www/css/manual.css index 7d604410..e56a92f1 100644 --- a/www/css/manual.css +++ b/www/css/manual.css @@ -719,8 +719,17 @@ main.manual aside.alert p{ text-align: center; } +@keyframes highlight { + 0%{ + background: #FFFF99; + } + 100%{ + background: none; + } +} + main.manual *:target{ - background: #FFFF99; + animation: highlight 5s; } @media(max-width: 1700px){