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

Raul Gutierrez Homework Pull #19

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

rcgutierrez
Copy link

No description provided.

margin-left: 20px;
border-left-style: solid;
border-left-color: rgba(195,195,195,.8);

Choose a reason for hiding this comment

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

Typically when you are specifying border CSS, you want to set the width, style, and color. You can do that in one line: border-left: 10px solid rgba(195, 195, 195, .8);


a{
text-decoration: none;
all: unset;

Choose a reason for hiding this comment

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

Rather than using this CSS property, you will want to consider a normalize or reset css sheet instead.

article{
border-bottom-style: solid;
border-bottom-width: thin;
border-bottom-color: rgba(195,195,195,.8);

Choose a reason for hiding this comment

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

Combine these into one line: border-bottom: thin solid rgba(195,195,195,0.8);

}

footer p{
color: rgba(195,195,195,.8);

Choose a reason for hiding this comment

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

This color value is being set multiple times throughout the css file.. it would make more sense to set the entire body color to this once, or move selectors together to set the color at once. Whenever you start writing out the same property and value more than once, it's a good idea to think how you can adjust selectors to reduce that repetition.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants