From d0b287b849ea1e4252ab3a89e9486a88e432c003 Mon Sep 17 00:00:00 2001 From: GEE-MM94 Date: Mon, 7 Jul 2025 17:05:46 +0200 Subject: [PATCH 1/2] Changing the height and the width of the circle --- style.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index b1a4e3b87..8e361db5a 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,8 @@ .blue { - background-color:blue + background-color: blue; } -.circle{ - border-radius:50%; - width:300px; - height:300px; +.circle { + border-radius: 50%; + width: 300px; + height: 500px; } From 52ac96daed5b3dc8cfcdf0368b31c82ffef7c9ca Mon Sep 17 00:00:00 2001 From: GEE-MM94 Date: Mon, 7 Jul 2025 17:14:11 +0200 Subject: [PATCH 2/2] Added a red background css rule. --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 8e361db5a..3fb92c318 100644 --- a/style.css +++ b/style.css @@ -6,3 +6,6 @@ width: 300px; height: 500px; } +.red { + background-color: red; +}