-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: master
Are you sure you want to change the base?
Review #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The colors and spacings are a bit off, but the general look of the page is there
👏
width: 260px; | ||
height: 43px; | ||
border-radius: 5px; | ||
border: groove; |
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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
height: 70px; | ||
color: white; | ||
font-size: 16px; | ||
font-family: Verdana, Geneva, sans-serif; |
There was a problem hiding this comment.
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
#tab2 { | ||
margin-left: 10px; | ||
} | ||
body > section > p > a { |
There was a problem hiding this comment.
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
body > section { | ||
font-size: 12px; | ||
} | ||
body { |
There was a problem hiding this comment.
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
body > section > p > a { | ||
text-decoration: none; | ||
} | ||
body > section { |
There was a problem hiding this comment.
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
>privacy statement.</a | ||
> | ||
We'll | ||
<text id="tab2"> occasionally send you account related emails.</text> |
There was a problem hiding this comment.
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 :)
No description provided.