From 592eebb463705b83d0647d45dcf4121b9956ea78 Mon Sep 17 00:00:00 2001 From: Zainab Choudhry Date: Wed, 8 May 2024 14:48:41 +0100 Subject: [PATCH] Completed all tasks. --- .vscode/settings.json | 3 +++ styles.css | 52 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .vscode/settings.json 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; +}