From a3a4b300c1d13749a5bceb8a38f98bd3417f3d46 Mon Sep 17 00:00:00 2001 From: Iola Bonet Date: Tue, 31 Jan 2023 22:34:49 +0100 Subject: [PATCH 1/3] form included index --- iron-comments/index.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 415101d..8c9f82d 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -11,8 +11,21 @@ -
- Name: Email: Comment: Receive email updates? Submit + +
+
+ +
+
+ +
+
+ + + Recieve email updates? +
+
+ From fef922913bc5ae63e8a0fe12fb3d71a5f46a988b Mon Sep 17 00:00:00 2001 From: Iola Bonet Date: Tue, 31 Jan 2023 23:06:14 +0100 Subject: [PATCH 2/3] add fonts and background color --- iron-comments/styles/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 1a9004d..125e92c 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -1,8 +1,11 @@ +@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700'); + body { padding: 0; - margin: 0; + margin: 0px 157; padding-top: 100px; width: 100vw; + background-color: hsl(0, 0% 90%); } From 9ef5b636ae929840f366188ad3e67dcc1cb186d2 Mon Sep 17 00:00:00 2001 From: Iola Bonet Date: Wed, 1 Feb 2023 17:05:59 +0100 Subject: [PATCH 3/3] lab Iron Comments --- iron-comments/index.html | 32 +++++++++++++++--------- iron-comments/styles/style.css | 45 +++++++++++++++++++++++++++++++--- 2 files changed, 63 insertions(+), 14 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 8c9f82d..110d476 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -10,23 +10,33 @@ +
-
-
+ + + -
-
+ -
-
- - +
+ + + - +
\ No newline at end of file diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 125e92c..81ffcf9 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -1,14 +1,53 @@ @import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700'); body { + font-family: 'Roboto-Condensed'; + font-weight: bold; padding: 0; - margin: 0px 157; + margin: 50px 50%; padding-top: 100px; width: 100vw; - background-color: hsl(0, 0% 90%); + background-color: rgb(25, 33, 41); +} + +.div{ + border: 5px solid rgb(255, 255, 255); + margin: 500px; + +} +.table { + border: 10px; + border-color: rgb(255, 255, 255); } #form-container { - margin: auto; + width: 190px; + height: 350px; + margin: 15px 380px ; + padding: 8px 10px 5px 15px; + color: rgb(255, 255, 255); + border: 3px solid rgb(67, 163, 230); + border-radius: 5px; + +} +.email-dates label{ + padding-bottom:2px; + + +} +.email-dates input{ + margin-bottom: 5px; + padding-right: 30px; + + } +.button{ + border-radius: 10px; + margin-top: 5px; + width: 60%; + height: 40px; + color: rgb(255, 255, 255); + background-color: rgb(67, 163, 230); + margin-color: +} \ No newline at end of file