georgefv / Colmar-Academy

0 stars 0 forks source link

Summary #5

Open jim-rosales opened 6 years ago

jim-rosales commented 6 years ago

Rubric Score

Criteria 1: HTML Structure

Criteria 2: Visual Layout for Both Desktop and Mobile Sizes

Criteria 3: Responsive Design (Media Queries, Responsive Units, etc.)

Criteria 4: Visual Design and Accessibility (Color Palette, Typography, Transitions, etc.)

Overall Score: 16/16

Congrats on finishing your capstone project! Overall you did an excellent job implementing all the requirements for the projects from the desktop & and mobile layouts top making use of all the tools you've learned about thus far. Apart from this, you did an excellent job increasing the readability of your files by making use of whitespace and adding comments throughout your project.

One thing I did notice was that for your main section when the user hovered on the start here button the rest of the content above would jump and then go back down where the cursor was moved. To alleviate/fix this you can add the border you were adding with the : hover class so that it's present in both states.

For example before your learn-something span rule was the following:

.learn-something span{
  display: flex;
  justify-content: center;
  background-color: rgba(74, 74, 74, 1);
  color: white;
  padding: 1rem 0rem;
  width: 100%;
}

With the border in place it would look like:

.learn-something span{
  display: flex;
  justify-content: center;
  background-color: rgba(74, 74, 74, 1);
  color: white;
  padding: 1rem 0rem;
  width: 100%;
  border: 2px solid rgba(74, 74, 74, 0.5);
}
georgefv commented 6 years ago

Thank you very much for your comments and for reviewing my project. You are right about the border and I will insert that into my code. Thank you once again.