diff --git a/index.html b/index.html index 7b65980..5317308 100644 --- a/index.html +++ b/index.html @@ -9,9 +9,9 @@
-Make this text orange and 28px
-Make this text orange and 28px
-Make this text orange and 28px
+Make this text orange and 28px
+Make this text orange and 28px
+Make this text orange and 28px
Make this text green and 28px
Make this text red and 28px
diff --git a/styles.css b/styles.css index e69de29..a67d638 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,58 @@ +.orange-text{ + 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 { + 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 { + font-size: 12px; + color: grey; +} + +.container-one.container-two > p { +color: purple; +font-size: 10px; +font-weight: bold; +text-transform: uppercase; +margin-left: 10px; +border-bottom: 1px black solid; +} + +section.container-one.container-two > p, +section.container-one.container-two > p > span { + color: orange; + font-size: 28px; +} \ No newline at end of file