From 92f8cecec04042bff0c9486436df089a03e6b869 Mon Sep 17 00:00:00 2001 From: Malika Esaw Date: Thu, 26 Sep 2024 17:36:35 -0400 Subject: [PATCH 1/2] Changing the height and the width of the circle --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b1a4e3b87..e5b7463ec 100644 --- a/style.css +++ b/style.css @@ -3,6 +3,6 @@ } .circle{ border-radius:50%; - width:300px; - height:300px; + width:500px; + height:500px; } From d8ce79fab5601b2b8e9221e89c24e6537c6a9ca7 Mon Sep 17 00:00:00 2001 From: Malika Esaw Date: Thu, 26 Sep 2024 17:50:54 -0400 Subject: [PATCH 2/2] adding red color feature --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index e5b7463ec..055ac1d55 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,6 @@ +.red { + background-color: red; +} .blue { background-color:blue }