top of page
bottom of page
/* Set the image to grayscale by default */ .repeater-container img { filter: grayscale(100%); -webkit-filter: grayscale(100%); transition: all 0.5s ease-in-out; } /* When hovering over the image, remove the grayscale effect */ .repeater-container img:hover { filter: grayscale(100%); -webkit-filter: grayscale(50%); }