quatuorbellefeuille.com

Content, build scripts and admin scripts for the Bellefeuille Quartet website.
git clone https://git.kevinlegouguec.net/quatuorbellefeuille.com
Log | Files | Refs

commit bc1dc6958441a8d0790cec648e333a874630ba8d
parent e5795372ae20cd282a12f5a6085fe73444da9635
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Thu, 22 Oct 2020 00:31:49 +0200

gray out event backgrounds

Diffstat:
Mévénements.css | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/événements.css b/événements.css @@ -23,8 +23,21 @@ object-fit: cover; height: 100%; width: 100%; + transition: 0.5s; +} + +.event:hover img { + filter: grayscale(0.8) brightness(0.4); } .event p { z-index: 1; + opacity: 0; + font-weight: bold; + color: white; + transition: 0.5s; +} + +.event:hover p { + opacity: 1; }