From c5290f5b955b56316c39446a3d9e185a9fb9af50 Mon Sep 17 00:00:00 2001 From: YagyikPrajapat <54469369+YagyikPrajapat@users.noreply.github.com> Date: Tue, 30 Jun 2020 11:17:29 +0530 Subject: [PATCH] Animation added in popular courses section Animation added in popular courses section in which when we hover over any of course it's size increases with proper duration. --- css/custom.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/css/custom.css b/css/custom.css index 2a2bb42..24a6282 100644 --- a/css/custom.css +++ b/css/custom.css @@ -1 +1,7 @@ -/** ADD YOUR AWESOME CODES HERE **/ \ No newline at end of file +/** ADD YOUR AWESOME CODES HERE **/ +div.col-md-4:hover{ + transform: scale(1.2); + transition-delay: 2ms; + transition-duration:0.5s; + transition-timing-function: ease-in-out; + }