From aef8148763f04635f7def677bb7fe83d0b91f75c Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Wed, 8 Oct 2025 22:56:18 -0700 Subject: [PATCH] fade grayscale in/out on images --- src/styles/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index 9b792fb..2b9ba3f 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -43,6 +43,12 @@ menu ul, menu ol, menu dl, menu menu { } img { height: auto; + filter: grayscale(1); + transition: all 0.2s linear; +} +img:hover { + filter: grayscale(0); + transition: all 0.5s linear; } dd { margin-bottom: 0.5rem; -- 2.51.0