From 6aa3dacda8c48d47a78686b12934419e5983ecd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alba=20Marc=C3=A9?= Date: Tue, 16 Jan 2024 22:01:09 +0100 Subject: [PATCH 1/3] form:labelandinput elements --- iron-comments/index.html | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 415101d..c6cf514 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -11,8 +11,19 @@ -
- Name: Email: Comment: Receive email updates? Submit + +
+
+
+
+
+ + Comment: Receive email updates? Submit
From 954f17421d26014dc3913ab7ad235b973cc8d1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alba=20Marc=C3=A9?= Date: Wed, 17 Jan 2024 08:49:50 +0100 Subject: [PATCH 2/3] html body done --- iron-comments/index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index c6cf514..a2799d3 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -21,9 +21,10 @@
- Comment: Receive email updates? Submit +
+ +
+ From ce4280f94a565a340846fc3c0b652a84dc7ed754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alba=20Marc=C3=A9?= Date: Wed, 17 Jan 2024 14:47:55 +0100 Subject: [PATCH 3/3] finish --- iron-comments/index.html | 33 ++++++++++++++-------------- iron-comments/styles/style.css | 39 ++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 16 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index a2799d3..d34d3ea 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -10,22 +10,23 @@ - -
-
-
-
-
-
-
- -
- -
+
+
+
+
+
+
+
+
+ +
+ +
+
\ No newline at end of file diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 1a9004d..58c9d4d 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -3,9 +3,48 @@ body { margin: 0; padding-top: 100px; width: 100vw; + background-color: rgb(25, 33, 41);; + } #form-container { margin: auto; + } + +.div { + background-color: rgb(25, 33, 41); + box-sizing: content-box; + padding-left: 20px; + padding-right: 0px; + padding-top: 20px; + padding-bottom: 20px; + border: 2px solid rgb(67, 163, 230); + width: 240px; + margin: auto; +} + +div * { + color: white; + font-weight: bold; +} + +#comment { + height: 160px; + width: 179px; +} + +#email-updates { + font-style: italic; +} + + +.button { + color: white; + background-color:rgb(67, 163, 230); + font-weight: 300; + border-radius: 8px; + border: 0; + padding: 5px 5px; +} \ No newline at end of file