From 8e1cff216edffafbde07aad2ab33cb22f63a488d Mon Sep 17 00:00:00 2001 From: nadine0890 Date: Tue, 31 Jan 2023 21:52:03 +0100 Subject: [PATCH 1/2] done --- iron-comments/index.html | 18 ++++++++++++++---- iron-comments/styles/style.css | 22 +++++++++++++++++++--- 2 files changed, 33 insertions(+), 7 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 415101d..d18d11e 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -1,19 +1,29 @@ + - + Iron Comments - + + -
- Name: Email: Comment: Receive email updates? Submit + + + + + + + +
Receive email updates?
+
+ \ No newline at end of file diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 1a9004d..2353538 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -2,10 +2,26 @@ body { padding: 0; margin: 0; padding-top: 100px; - width: 100vw; - + width: 100vw; + color: rgb(255, 255, 255); + background-color: rgb(25, 33, 41); } #form-container { - margin: auto; + display: flex; + flex-direction: column; + justify-content: space-around; + padding: 50px 50px 20px 20px +} + +form { + border: 3px solid rgb(67, 163, 230); + margin: 500px } + +button { + border-radius: 10px; + background-color: rgb(67, 163, 230); + color:rgb(255, 255, 255); + width: 60px +} \ No newline at end of file From 8189e58147f06c85c06470cac9781cdb5080c82d Mon Sep 17 00:00:00 2001 From: nadine0890 Date: Tue, 31 Jan 2023 21:54:03 +0100 Subject: [PATCH 2/2] done --- iron-comments/styles/style.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 2353538..002ae7a 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -11,17 +11,18 @@ body { display: flex; flex-direction: column; justify-content: space-around; - padding: 50px 50px 20px 20px + padding: 50px 50px 20px 20px; } form { border: 3px solid rgb(67, 163, 230); - margin: 500px + margin: 500px; + width: 250px; } button { border-radius: 10px; background-color: rgb(67, 163, 230); color:rgb(255, 255, 255); - width: 60px + width: 60px; } \ No newline at end of file