From 58c064957be1fe9c63e658926796eabed7c6d8c3 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Mon, 10 Mar 2025 13:17:48 -0400 Subject: css: chord scale color when clicked + pointer when hovered. --- main.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.css b/main.css index fb89649..63acc02 100644 --- a/main.css +++ b/main.css @@ -80,11 +80,18 @@ body { text-align: center; } +#key-picker .notes li.click1:before, +#key-picker .notes li.click2:before, +#key-picker .notes li.click3:before { + color: lightgrey; +} + #key-picker .notes li { display: grid; grid-row-start: 1; counter-increment: notes; text-align: center; + cursor: pointer; } #key-picker .chords { -- cgit v1.2.3