From 80f5e9030a04683d387c8891687ba49665ee352a Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Wed, 1 Jan 2025 17:41:26 -0500 Subject: [PATCH] Add main.css --- Murach/exercises/ch01/welcome/main.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Murach/exercises/ch01/welcome/main.css diff --git a/Murach/exercises/ch01/welcome/main.css b/Murach/exercises/ch01/welcome/main.css new file mode 100644 index 0000000..bbe34b0 --- /dev/null +++ b/Murach/exercises/ch01/welcome/main.css @@ -0,0 +1,26 @@ +body { + font-family: Arial, Helvetica, sans-serif; + margin: 1em auto; + width: 600px; + padding: 0 2em 0; + border: 1px solid black; + border-radius: 1em; +} +h1 { + color: cornflowerblue; +} +div { + margin-bottom: 1em; +} +label { + display: inline-block; + width: 11em; + text-align: right; +} +input { + margin-left: 1em; + margin-right: 0.5em; +} +span { + color: red; +}