From abc20c0b6c8aab1f53f233a8473fad8d9de7d49b Mon Sep 17 00:00:00 2001 From: Harvansh S Rathore <78679500+Harvansh-1234@users.noreply.github.com> Date: Mon, 11 Oct 2021 13:59:49 +0530 Subject: [PATCH] Added hover effect on memes --- .vscode/settings.json | 3 +++ style.css | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/style.css b/style.css index b33f0ac..d111601 100644 --- a/style.css +++ b/style.css @@ -19,4 +19,11 @@ .images > img { width: 30%; } +} +.images img{ + transition: .5s all ease; +} +.images img:hover{ + + transform: scale(0.9); } \ No newline at end of file