From 55e47ced4f2c0a892ee07e07d1c52e1dba64827c Mon Sep 17 00:00:00 2001 From: Nika Date: Tue, 16 Jan 2024 21:58:47 +0100 Subject: [PATCH] done --- iron-comments/index.html | 41 ++++++++++++++-------- iron-comments/styles/style.css | 64 ++++++++++++++++++++++++++++++++-- 2 files changed, 88 insertions(+), 17 deletions(-) diff --git a/iron-comments/index.html b/iron-comments/index.html index 415101d..72f341c 100644 --- a/iron-comments/index.html +++ b/iron-comments/index.html @@ -1,19 +1,32 @@ - - - - - - Iron Comments - - - - + + + + + Iron Comments + + + +
- Name: Email: Comment: Receive email updates? Submit -
+ + + + + - - \ No newline at end of file + + +
+ +

Receive email updates?

+
+ + + + + diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css index 1a9004d..ecbf033 100644 --- a/iron-comments/styles/style.css +++ b/iron-comments/styles/style.css @@ -1,11 +1,69 @@ body { padding: 0; - margin: 0; + margin: 0 auto; padding-top: 100px; - width: 100vw; + width: 100vw; + background-color: rgb(25, 33, 41); + } #form-container { - margin: auto; + margin: 0 auto; + max-width: 250px; + color: white; + font-family: Georgia; + border: rgb(67, 163, 230) solid 2px; + border-radius: 4px; + padding: 20px; + +#form-container { + margin: 0 auto; +} + + + + + +} + +button { + color: white; + background-color: rgb(67, 163, 230); + margin-top: 15px; + border-radius: 15px; + font-family: Georgia; + padding: 8px; + margin-top: -15px; +} + +.checkbox { + float: right; + + margin-right: 70px; + } + +p { + font-family: Georgia; + font-style: italic; + font-size: 15px; + margin-top: 5px; +} + +label { + margin-top: .33em; + display: block; +} + +input { + border-color: rgb(67, 163, 230); + margin-top: 5px; + border-radius: 3px; +} + +textarea { + margin-top: 5px; + border-color: rgb(67, 163, 230); + +} \ No newline at end of file