From ca8ee4351e1bb69ee194f93adfb240d00e9f4421 Mon Sep 17 00:00:00 2001 From: Shantel Date: Sat, 3 May 2025 20:23:21 -0400 Subject: [PATCH] created css rainbow --- index.html | 17 +++++++++-------- main.css | 21 +++++++++++++++++++++ 2 files changed, 30 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 1654a2e29..444528482 100644 --- a/index.html +++ b/index.html @@ -3,25 +3,26 @@ My Little Rainbow + -
-
-
-
-
-
-
+
+
+
+
+
+
+
- +
diff --git a/main.css b/main.css index 984a9b226..acd300d60 100644 --- a/main.css +++ b/main.css @@ -9,3 +9,24 @@ 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