From 7b1965849c303ea63755dd621b493f16afeaa79b Mon Sep 17 00:00:00 2001 From: Piyumal Karunathilaka Date: Mon, 26 Oct 2020 12:03:50 +0530 Subject: [PATCH] Added enlarge on hover effect to submit button --- index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.css b/index.css index e313e23..2c31578 100644 --- a/index.css +++ b/index.css @@ -477,6 +477,12 @@ footer{ color:white; height:3rem; margin: .5rem; font-size:2rem; + transition: transform .2s; +} + +.button:hover { + transform: scale(1.5); + -webkit-transform: scale(1.5); } input{