From 4b30d57bc02eed36fb511abf30f77ae10511ad47 Mon Sep 17 00:00:00 2001 From: Soham Date: Sat, 9 Oct 2021 11:13:30 +0530 Subject: [PATCH] Added hover effect on easy/med./hard buttons --- css/styles.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/css/styles.css b/css/styles.css index 0bcc0e2..61bcd05 100644 --- a/css/styles.css +++ b/css/styles.css @@ -348,4 +348,23 @@ Desktops width: 48rem; height: auto; } + #easyGame:hover{ + width: 150px; + color: #19f006; + font-weight:bold; + font-size:2.1em; + } + #mediumGame:hover{ + color: yellow; + width: 160px; + font-weight:bold; + font-size:2.1em; + } + #hardGame:hover{ + width: 150px; + color: red; + font-weight: bold; + font-size:2.1em; + } } +