-
Notifications
You must be signed in to change notification settings - Fork 15
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
Homework_2 complete #13
base: master
Are you sure you want to change the base?
Conversation
} | ||
|
||
header h1{ | ||
font-family: 'Lato', 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.
Since you set the font-family in the body above, you don't have to reset it here again.
|
||
header nav a:first-child{ | ||
color:#DDDDDD; | ||
padding:20px 0 0 0; |
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.
Another way to write this since you're only adding padding to the left is padding-left: 20px;
line-height: 1.5em; | ||
} | ||
|
||
article p::first-letter{ |
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.
Nice!!
font-size: 600%; | ||
color: #DDDDDD; | ||
float:left; | ||
margin: .3em .1em .4em 0; |
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.
I like that you're trying out ems here! But make sure you are consistent in whatever you choose. So if you start off setting margins in ems, then stick with it throughout.
No description provided.