Web Design - What Is Doing This Animation Effect on a Div?

Just look at source code in web browser.

It's using CSS on hover

@media screen and (min-width: 40em)
.channels-cta .channel-cta-item:hover {
box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
transition: all .3s ease;
-ms-transform: scale(1.05,1.05);
-webkit-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
 
Back
Top Bottom