From f1e85f4ae18f9e26480c76c3195a1e4e613cdeeb Mon Sep 17 00:00:00 2001 From: Devavrat Ravetkar Date: Tue, 4 Feb 2025 17:28:35 +0530 Subject: [PATCH 1/2] Change size and color of circle --- style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index b1a4e3b87..039ca5672 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,8 @@ .blue { - background-color:blue + background-color:rgb(148, 97, 207); } .circle{ border-radius:50%; - width:300px; - height:300px; + width:500px; + height:500px; } From 87dbd5bc9b2af95aa48ba95df95b403a170e54b9 Mon Sep 17 00:00:00 2001 From: Devavrat Ravetkar Date: Tue, 4 Feb 2025 17:36:51 +0530 Subject: [PATCH 2/2] Add a new color class --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 039ca5672..a07d50ad4 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,10 @@ .blue { background-color:rgb(148, 97, 207); } + +.red { + background-color: red; +} .circle{ border-radius:50%; width:500px;