From 418575a7c0081bf8b3dbd86b92ad03b09e65689b Mon Sep 17 00:00:00 2001 From: Cathy-Jo Bogle Date: Wed, 1 Jan 2025 11:47:56 -0500 Subject: [PATCH 1/2] Changed height and width of circle to 500 --- 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 435f509a47912540230e162be81082d383f72570 Mon Sep 17 00:00:00 2001 From: cbogle <123035712+cbogle@users.noreply.github.com> Date: Wed, 1 Jan 2025 12:59:25 -0500 Subject: [PATCH 2/2] Update style.css Add Red and Green Color features --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index e5b7463ec..c971b2a3e 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,12 @@ .blue { background-color:blue } +.red { + background-color: red +} +.green { + background-color: green +} .circle{ border-radius:50%; width:500px;