Skip to content
Open

done #35

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions iron-comments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@
</head>
<body>

<form id="form-container">
Name: Email: Comment: Receive email updates? Submit
<form action="#" method="post" id="form-container">
<label for="name">Name:</label><br>
<input type="text" name="name" id="name" size="25"><br>
<label for="email">Email:</label><br>
<input type="email" name="email" id="email" size="25"><br>
<label for="comment">Comment:</label><br>
<textarea name="comment" id="comment" rows="4" cols="10" style="width:195px; height:170px;"></textarea><br>
<label for="updates" id="recive">Recive email updates?</label>
<input type="checkbox" name="updates" id="updates"><br>
<button type="submit">Submit</button>
</form>

</body>
Expand Down
46 changes: 45 additions & 1 deletion iron-comments/styles/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,55 @@
/*Dark Blue: rgb(25, 33, 41)
Light Blue: rgb(67, 163, 230)
Text: rgb(255,255,255)*/

body {
padding: 0;
margin: 0;
padding-top: 100px;
width: 100vw;
width: 100vw;
background-color: rgb(25,33,41);
color: rgb(255,255,255);
font-weight: bold;
font-size: 112%;

}

#form-container {
margin: auto;
width: 248px;
height: 350px;
border: 2px solid rgb(67,163,230);
border-radius: 0.2em;
padding: 25px 10px 15px 10px;
}

label, input, textarea, button {
margin: 3px 10px;
padding: 1px;
}

input, textarea, button {
border: 1px solid rgb(67,163,230);
border-radius: 0.2em;
}

#updates {
margin: 0;
}

#recive {
font-style: italic;
}

textarea {
margin: 3px 10px 0 10px;
}

button {
background-color: rgb(67,163,230);
color: rgb(255,255,255);
border-radius: 0.7em;
width: 55px;
height: 25px;
font-weight: lighter;
}