style: add hover transition effects to glass card headings

This commit is contained in:
Ümit Tunç
2026-06-02 06:29:17 +03:00
parent 092eb09316
commit 9c4dc0ff11
@@ -74,6 +74,19 @@
filter: brightness(1.4);
transition: all 0.3s ease-in-out;
}
.glass-card h4 {
color: white;
transition: all 0.3s ease-in-out;
text-shadow: 0px 1px 10px #00000080;
}
.glass-card:hover h4 {
color: black;
transition: all 0.3s ease-in-out;
text-shadow: none;
}
.glass-card:hover svg {
filter: brightness(0.8);
}