From d83e8ab2651d498616a00f0f428892c018fa02d6 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 5 Mar 2024 11:23:41 +0000 Subject: [PATCH] need to fix the last css element --- styles.css | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/styles.css b/styles.css index e69de29..4146be1 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,61 @@ +p { + color: orange; + font-size: 28px; +} + +.paragraph { + color: green; + font-size: 28px; +} + +#paragraph { + color: red; + font-size: 28px; +} + +h1, h2, h3, h4 { + color: pink; +} + +.container-one { + color: black; + font-size: 28px; +} + +.container-one p { + color: blue; + font-size: 12px; + margin-left: 10px; + border-bottom: 2px solid black; +} + +.container-two span { + color: black; + font-size: 28px; +} + +.container-two p { + color: purple; + font-size: 15px; + margin-left: 10px; + border-bottom: 1px solid black; +} + +.container-two p span { + color: grey; + font-size: 12px; +} + +div.container-one.container-two p { + color: purple; + font-size: 10px; + text-transform: uppercase; + margin-left: 10px; + border-bottom: 1px solid black; + font-weight: bold; +} + +section.container-one.container-two * { + color: orange; + font-size: 28px; +} \ No newline at end of file