Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
184 changes: 106 additions & 78 deletions GitHub_Login.html
Original file line number Diff line number Diff line change
@@ -1,86 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=>">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=>" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>GitHub Login</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif ;

}
.paragraph {
width: 260px;
font-size: 11.5px;
color: rgb(122, 123, 126);
margin-left: 5px;
line-height: 18px;
}
.inputs{
width: 260px;
height: 43px;
border-radius: 5px;
border: groove;
margin-top: 8px;

}
#lastInput{
margin-bottom: -5px;
}
.labelClass{
font-size: 13px;
margin-top: -100px;
color: rgb(92, 93, 95);
}
.button{
background-color: rgb(42, 189, 72);
width: 260px;
height: 70px;
color: white;
font-size: 16px;
font-family: Verdana, Geneva, sans-serif;
border-radius: 5px;
text-align: middle;
margin-bottom: -5px;

}
#tab1{
margin-left: 12px;
}
#tab2{
margin-left: 10px;
}
body>section>p>a{
text-decoration: none;

}
body>section{
font-size: 12px;
}
body{
margin-left: 15px;
}

body {
font-family: Arial, Helvetica, sans-serif;
}
.paragraph {
width: 260px;
font-size: 11.5px;
color: rgb(122, 123, 126);
margin-left: 5px;
line-height: 18px;
}
.inputs {
width: 260px;
height: 43px;
border-radius: 5px;
border: groove;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This border is pretty off 😄

margin-top: 8px;
}
#lastInput {
margin-bottom: -5px;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are only rare occasions where you want to do negative margins, and this isn't one of them.

Target the p element below and make its top margin smaller

}
.labelClass {
font-size: 13px;
margin-top: -100px;
color: rgb(92, 93, 95);
}
.button {
background-color: rgb(42, 189, 72);
width: 260px;
height: 70px;
color: white;
font-size: 16px;
font-family: Verdana, Geneva, sans-serif;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On rare occasions we have two fonts, buttons aren't the case tho 🙂

In 99% of the cases, fonts are only set on the body tag

border-radius: 5px;
text-align: middle;
margin-bottom: -5px;
}
#tab1 {
margin-left: 12px;
}
#tab2 {
margin-left: 10px;
}
body > section > p > a {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doing just

a {
  text-decoration: none;
}

would suffice

text-decoration: none;
}
body > section {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Html tag selectors should always go on the top

font-size: 12px;
}
body {
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never target the element twice unless you really have to. move rule up in the first body selector

margin-left: 15px;
}
</style>
</head>
<body>
<form>
<label for="first" class="labelClass">Username<br></label>
<input type="text" name="username" placeholder=" Pick a username" class="inputs" id="first"><br>
<label for="second" class="labelClass"><br>Email<br></label>
<input type="text" name="email" placeholder=" [email protected]" class="inputs" id="second"><br>
<label for="third" class="labelClass"><br>Password<br></label>
<input id="lastInput" type="text" name="password" placeholder=" Create a password" class="inputs" id="third"><br>
<p class="paragraph"> Make sure it's more than 15 characters, or at least 8 characters, including a number, and a lowercase letter. </p>
<button class="button" type="submit"> Sign up for GitHub </button>
</head>
<body>
<form>
<label for="first" class="labelClass">Username<br /></label>
<input
type="text"
name="username"
placeholder=" Pick a username"
class="inputs"
id="first"
/><br />
<label for="second" class="labelClass"><br />Email<br /></label>
<input
type="text"
name="email"
placeholder=" [email protected]"
class="inputs"
id="second"
/><br />
<label for="third" class="labelClass"><br />Password<br /></label>
<input
id="lastInput"
type="text"
name="password"
placeholder=" Create a password"
class="inputs"
id="third"
/><br />
<p class="paragraph">
Make sure it's more than 15 characters, or at least 8 characters,
including a number, and a lowercase letter.
</p>
<button class="button" type="submit">Sign up for GitHub</button>
</form>

<section>
<p class="paragraph"> By clicking "Sign up fot GitHub", you agree to our
<a href="https://help.github.com/articles/github-terms-of-service/" id="tab1"> terms of service</a> and <a href="https://help.github.com/articles/github-privacy-statement/">privacy statement.</a>
We'll <text id="tab2"> occasionally send you account related emails.</text></p>

<section>
<p class="paragraph">
By clicking "Sign up fot GitHub", you agree to our
<a
href="https://help.github.com/articles/github-terms-of-service/"
id="tab1"
>
terms of service</a
>
and
<a href="https://help.github.com/articles/github-privacy-statement/"
>privacy statement.</a
>
We'll
<text id="tab2"> occasionally send you account related emails.</text>
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This tag doesn't exist, and you don't need it here :)

</p>
</section>
</body>
</html>
</body>
</html>