diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/styles.css b/styles.css index e69de29..b6dfeff 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,52 @@ +p { + color: orange; + font-size: 28px; +} +.paragraph { + color: green; + font-size: 28px; +} +#paragraph { + color: red; + font-size: 28px; +} +h1, +h2, +h3, +h4 { + color: pink; +} +div.container-one p { + color: blue; + font-size: 12px; + margin-left: 10px; + border-bottom: 2px solid black; +} +div.container-one, +.container-two span { + color: black; + font-size: 28px; +} +div.container-two p { + color: purple; + font-size: 15px; + margin-left: 10px; + border-bottom: 1px solid black; +} +div.container-two p span { + color: grey; + font-size: 12px; +} +div.container-one.container-two p { + color: purple; + font-size: 10px; + font-weight: bold; + text-transform: uppercase; + margin-left: 10px; + border-bottom: 1px solid black; +} +section.container-one.container-two p, +section.container-one.container-two span { + color: orange; + font-size: 28px; +}