diff --git a/index.html b/index.html index 25ca4ff..ca38f10 100644 --- a/index.html +++ b/index.html @@ -11,8 +11,8 @@ - - + + diff --git a/style.css b/style.css index 86af1fe..dbc7424 100644 --- a/style.css +++ b/style.css @@ -17,6 +17,7 @@ --text-color: #123456; --glass-opacity: 0.3; + --glass-opacity-active: 0.2; --glass-shadow-opacity: 0.1; --glass-background: rgba(255, 255, 255, var(--glass-opacity)); --glass-blur: 10px; @@ -44,6 +45,10 @@ background: var(--glass-background); } +.glass-button:active { + background: rgba(255, 255, 255, var(--glass-opacity-active)); +} + .glass-shadow, .glass-button, .glass-input { @@ -325,3 +330,7 @@ single-artist-view { .library-item h3 { overflow-wrap: break-word; } + +.library-item:active { + background: var(--glass-background); +}