Animation: add blur on hover to all images

This commit is contained in:
2026-01-23 12:03:07 +02:00
parent be2951e99b
commit daf6eb38da

View File

@@ -524,3 +524,13 @@ h5,
h6 {
font-family: var(--font-manrope), sans-serif;
}
/* Animation base styles */
img {
transition: filter 0.3s ease;
}
img:hover {
filter: blur(4px);
}