diff --git a/styles.css b/styles.css index e69de29..3c4cd2d 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,47 @@ +p { + color: orange; + font-size: 28px; +} +.paragraph { + color: green; +} +#paragraph { + color: red; +} +h1, +h2, +h3, +h4 { + color: pink; +} +div.container-one p { + color: blue; + font-size: 12px; + margin: 10px; + border-bottom-style: solid; + border-bottom-color: black; + border-bottom-width: 2px; +} +div.container-two p:nth-child(2) { + color: purple; + font-size: 15px; + margin: 10px; + border-bottom-style: solid; + border-bottom-color: black; + border-bottom-width: 1px; +} +div.container-two span:last-child { + font-size: 12px; + color: grey; +} +div.container-one.container-two p { + color: purple; + text-transform: uppercase; + font-weight: bold; + font-size: 10px; + border-bottom-width: 1px; +} +section p { + font-size: 28px; + color: orange; +}