From bca0993018fd888a2c983d5f0e67f8e4e6b3b397 Mon Sep 17 00:00:00 2001 From: Ghst707 Date: Wed, 9 Apr 2025 17:12:24 -0700 Subject: [PATCH 1/3] Changing the size 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 4948cf3b1cd88e6b36ebca2b2782590213bd216f Mon Sep 17 00:00:00 2001 From: Ghst707 Date: Wed, 9 Apr 2025 17:17:11 -0700 Subject: [PATCH 2/3] Modified Style.css circle color --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index e5b7463ec..c62c223bd 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,10 @@ .blue { - background-color:blue + background-color:black; } .circle{ border-radius:50%; width:500px; height:500px; + border-color: blue; + border-width: 3px } From 30b6a29fb7c29e043ec81885d627b7fd3dc6776a Mon Sep 17 00:00:00 2001 From: Ghst707 Date: Wed, 9 Apr 2025 17:23:43 -0700 Subject: [PATCH 3/3] Reformatting Circle --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index c62c223bd..0b8766cd7 100644 --- a/style.css +++ b/style.css @@ -5,6 +5,7 @@ border-radius:50%; width:500px; height:500px; - border-color: blue; - border-width: 3px + border-color: darkblue; + border-style: double; + border-width: 10px }