From 38463444a9ef9f0a68be3a7ce71def8f2222efb9 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Mon, 1 Jul 2024 22:05:28 -0400 Subject: [PATCH] Added COMPLETE.md, edited index.html and styles.cs s according to README.md --- foundations/03-grouping-selectors/COMPLETED.md | 1 + foundations/03-grouping-selectors/index.html | 4 ++-- foundations/03-grouping-selectors/style.css | 15 +++++++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 foundations/03-grouping-selectors/COMPLETED.md diff --git a/foundations/03-grouping-selectors/COMPLETED.md b/foundations/03-grouping-selectors/COMPLETED.md new file mode 100644 index 0000000..6f0cec2 --- /dev/null +++ b/foundations/03-grouping-selectors/COMPLETED.md @@ -0,0 +1 @@ +# Complete \ No newline at end of file diff --git a/foundations/03-grouping-selectors/index.html b/foundations/03-grouping-selectors/index.html index 796431e..691b38b 100644 --- a/foundations/03-grouping-selectors/index.html +++ b/foundations/03-grouping-selectors/index.html @@ -8,7 +8,7 @@ - - + + \ No newline at end of file diff --git a/foundations/03-grouping-selectors/style.css b/foundations/03-grouping-selectors/style.css index e69de29..71efd70 100644 --- a/foundations/03-grouping-selectors/style.css +++ b/foundations/03-grouping-selectors/style.css @@ -0,0 +1,15 @@ +.first, +.second { + font-family: Helvetica, 'Times New Roman', sans-serif; + font-size: 28px; +} + +.first { + background-color: black; + color: white; + font-weight: bold; +} + +.second { + background-color: yellow; +} \ No newline at end of file