From 706abbc41c4528eb54ac4421478d25795952c71f Mon Sep 17 00:00:00 2001 From: Nihar Patel Date: Fri, 2 May 2025 13:33:32 -0400 Subject: [PATCH 1/2] Add id tags to divs' on intex.html --- index.html | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 1654a2e29..211d57edf 100644 --- a/index.html +++ b/index.html @@ -2,19 +2,24 @@ - My Little Rainbow + + My Little Rainbow + + + + -
-
-
-
-
-
-
+
+
+
+
+
+
+
From 484feb3e4ac26efdf25f958d56b4e99158171394 Mon Sep 17 00:00:00 2001 From: Nihar Patel Date: Fri, 2 May 2025 13:38:35 -0400 Subject: [PATCH 2/2] Complete phase-0-css-rainbow-lab --- main.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/main.css b/main.css index 984a9b226..31294bc01 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 { + 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; +} \ No newline at end of file