From 5de93750468469004a156a26f5be4cbc9142d3ff Mon Sep 17 00:00:00 2001 From: Faith Wanjiku <142389633+wanjiku8@users.noreply.github.com> Date: Mon, 18 Nov 2024 15:32:24 +0300 Subject: [PATCH] Update main.css --- main.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/main.css b/main.css index 984a9b226..97de41925 100644 --- a/main.css +++ b/main.css @@ -9,3 +9,31 @@ div { border-right-color: transparent; /* the right side */ border-bottom-color: transparent; /* and the bottom of the circle */ } +#red { + /* this selects any elements with the red id */ + border-top-color: #f00; +} +#orange { + /* this selects any elements with the red id */ + border-top-color: rgb(226, 124, 7); +} +#yellow { + /* this selects any elements with the red id */ + border-top-color: rgb(209, 174, 16); +} +#green { + /* this selects any elements with the red id */ + border-top-color: rgb(21, 63, 8); +} +#blue { + /* this selects any elements with the red id */ + border-top-color: rgb(24, 178, 224); +} +#darkblue { + /* this selects any elements with the red id */ + border-top-color: indigo; +} +#purple { + /* this selects any elements with the red id */ + border-top-color: violet; +}