Agent-Banks / assignments

Assignments for Suncoast Developers Guild
0 stars 0 forks source link

05 - 04 - Octodex #19

Closed Agent-Banks closed 4 years ago

Agent-Banks commented 4 years ago

GitHub has a great mascot called Octocat. Octocat even has its own gallery of variations, created by GitHub itself and fans, called Octodex.

You can use all the tools you have at your disposal to get the job done. Use your browser's Developer Tools to inspect their site to find the exact font sizes and padding amounts.

Objectives

Requirements

Explorer Mode

Adventure Mode

Epic Mode

Additional Resources

Agent-Banks commented 4 years ago

octodex-codybanks.netlify.com

https://github.com/codyb23/octodex

Agent-Banks commented 4 years ago

Your homework 05 - 04 - Octodex was marked: Exceeds Expectations

Gavin Approved!

“Gavin Approved!”

gstark commented 4 years ago

Nicely done!

I'd watch cases like this:

  article:nth-child(4) {
    padding-left: 0;
  }

  article:nth-child(7) {
    padding-left: 0;
  }

  article:nth-child(10) {
    padding-left: 0;
  }

Often when we have to go in more than one or two children, what we really see is the need to restructure the code with more semantic elements, or to place classes on things. 10th child for padding-left: 0 has almost no meaning. Whereas first-child has more. It is also easier for us to think about the first child and see what it is than the 10th child

Excellent work!