From 57b1e185cc3ee2b149b514c3dcb198c39a00ef06 Mon Sep 17 00:00:00 2001 From: Kevin Date: Fri, 30 May 2025 18:42:24 -0400 Subject: [PATCH] Changing the height and the width of the circle --- style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b1a4e3b87..ae8f3f764 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,11 @@ +:root{ + --circle-size:500px; +} .blue { background-color:blue } .circle{ border-radius:50%; - width:300px; - height:300px; + width:var(--circle-size); + height:var(--circle-size); }