From 01457c01f45eb784a53cd30c0b2df623ca92ec4e Mon Sep 17 00:00:00 2001 From: Anthony Phillips Date: Thu, 2 May 2024 23:47:59 -0400 Subject: [PATCH 1/3] add link to style sheet --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 1654a2e29..54fa6b49e 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ My Little Rainbow + From 586aff7e48f82037dd34bcdbf54ab676354ed87e Mon Sep 17 00:00:00 2001 From: Anthony Phillips Date: Thu, 2 May 2024 23:54:53 -0400 Subject: [PATCH 2/3] Create id element for colors of rainbow --- index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 54fa6b49e..92eef9e0b 100644 --- a/index.html +++ b/index.html @@ -9,13 +9,13 @@ -
-
-
-
-
-
-
+
+
+
+
+
+
+
From 79ed0af712d8bca61258cd336e9e0d0fb0df343d Mon Sep 17 00:00:00 2001 From: Anthony Phillips Date: Fri, 3 May 2024 00:03:18 -0400 Subject: [PATCH 3/3] Assign color to id --- main.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/main.css b/main.css index 984a9b226..53f1c2d37 100644 --- a/main.css +++ b/main.css @@ -9,3 +9,33 @@ div { border-right-color: transparent; /* the right side */ border-bottom-color: transparent; /* and the bottom of the circle */ } + +#red { + border-top-color: #f00; +} + +#orange { + border-top-color: #ffa500; +} + +#yellow { + border-top-color: #ff0; +} + +#green { + border-top-color: #00bc3f; +} + +#blue{ + border-top-color: #06f; +} + +#indigo{ + border-top-color: #8a2be2; +} + +#violet{ + border-top-color: #d300c9; +} + +