Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
Binary file added iron-comments/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions iron-comments/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
19 changes: 16 additions & 3 deletions iron-comments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,23 @@
<link rel="stylesheet" type="text/css" href="./styles/style.css">
</head>
<body>

<form id="form-container">
Name: Email: Comment: Receive email updates? Submit
</form>

<label for="name" class="Texto">
Name:
<br><input type="text" id="name"></label><br>

<label for="email" class="Texto">Email:
<br><input type="email" id="email"></label><br>

<label for="comment" class="Texto">Comment:</label><br>
<textarea id="comment" name="comment" rows="10" cols="25"></textarea><br>

<label for="check" class="cursive" class="Texto" >Receive email updates?
<br><input type="checkbox" id="check" name="check"></label><br>

<button class="button">Submit</button>
</form>
</body>
</html>
39 changes: 36 additions & 3 deletions iron-comments/styles/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,44 @@
body {
padding: 0;
margin: 0;
padding-top: 100px;
width: 100vw;
width: 100vw;
background-color: rgb(25, 33, 41);
color: rgb(255, 255, 255);
font-family: "Noto, Serif";

}

#form-container {
margin: auto;
margin: 40px;
padding: 20px 0px 20px 20px;
width: 250px;
border: 2px solid;
border-color: rgb(67, 163, 230);
border-radius: 3px;
margin: 0 auto;
}
.Texto {
font-weight: 600;
border-color: rgb(67, 163, 230);

}
.Texto input {
width: 215px;
}

.cursive {
font-weight: 500px;
font-style: italic;
}

.button {
background-color: rgb(67, 163, 230);
border: none;
color: rgb(255, 255, 255);
border-radius: 10px;
font-weight: lighter;
padding: 4px 8px;
font-weight: 100;
margin-top: 5px;

}