From 85177db6da05107577b84ec700cb72e93016e220 Mon Sep 17 00:00:00 2001 From: Marc Marimon Date: Tue, 16 Jan 2024 19:27:58 +0100 Subject: [PATCH 1/4] html done --- iron-comments/index.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 415101d..ba010ed 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -12,7 +12,16 @@
- Name: Email: Comment: Receive email updates? Submit +
+
+
+
+
+
+ +
+ + From bf4957cb2356f4b7f140062b20fdec14015d8f79 Mon Sep 17 00:00:00 2001 From: Marc Marimon Date: Tue, 16 Jan 2024 20:47:53 +0100 Subject: [PATCH 2/4] CSS styles and coments in the code --- iron-comments/index.html | 28 +++++++++++++++---------- iron-comments/styles/style.css | 37 ++++++++++++++++++++++++++++++++-- 2 files changed, 52 insertions(+), 13 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index ba010ed..594c53a 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -1,28 +1,34 @@ + - + Iron Comments - + - + +
-
-
-
-
+ +
+
+ +
+
+
-
+
+ -
+
+ - - + \ No newline at end of file diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 1a9004d..98aa66f 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -1,11 +1,44 @@ +/*General body Style*/ body { padding: 0; margin: 0; padding-top: 100px; - width: 100vw; - + width: 100vw; + background-color: rgb(25, 33, 41); } +/*General Form Style*/ #form-container { margin: auto; + width: 250px; + border: solid rgb(67, 163, 230); + padding: 30px 30px 25px 25px; +} +/*Label Text Style*/ +#form-container label{ + color: rgb(255,255,255); + font-size: large; + font-weight: bold; +} +/*Margin and border Input Style*/ +.space{ + border-inline-color: rgb(67, 163, 230); + width: 85%; + height: 20px; + margin: 5px 0; +} +/*Margin, border & size Textarea Style*/ +#form-container textarea{ + border-inline-color: rgb(67, 163, 230); + width: 85%; + height: 200px; + margin: 5px 0; } +/*Button Style*/ +#form-container button{ + background-color:rgb(67, 163, 230); + color:rgb(255,255,255); + padding: 5px 10px; + border-radius: 10px; + margin-top: 5px; +} \ No newline at end of file From 68b67a7c89b9626e8475afbb4306405590c1beed Mon Sep 17 00:00:00 2001 From: Marc Marimon Date: Tue, 16 Jan 2024 20:57:58 +0100 Subject: [PATCH 3/4] Ortography error solved --- iron-comments/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 594c53a..3003b0d 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -12,7 +12,7 @@ - +

From f392fc169ad890fdc6e6df673f7f5bb38af6d127 Mon Sep 17 00:00:00 2001 From: Marc Marimon Date: Tue, 16 Jan 2024 21:46:08 +0100 Subject: [PATCH 4/4] Last commit code depurated --- iron-comments/index.html | 23 ++++++++++++++--------- iron-comments/styles/style.css | 2 +- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 3003b0d..ef37c88 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -15,19 +15,24 @@ -
-
+ -
-
+ -
-
+ - -
+ - + diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 98aa66f..b22d3e1 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -20,7 +20,7 @@ body { font-size: large; font-weight: bold; } -/*Margin and border Input Style*/ +/*Margin border & size Input Style*/ .space{ border-inline-color: rgb(67, 163, 230); width: 85%;