Not Found
Not Found
Not Found
Request path contains unescaped characters
Request path contains unescaped characters
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Results summary component

Desktop design screenshot for the Results summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

Estoy orgullo de usar javascript en los proyectos y me gustaría implementar gulp para automatizar su uso.

What challenges did you encounter, and how did you overcome them?

Usar javascript en la consulta de información JSON.

What specific areas of your project would you like help with?

Uso de javascript y mejorar en diseño responsivo flexbox y grid.

Community feedback

@0xabdulkhaliq

Posted

Hello there 👋. Congratulations on successfully completing the challenge! 🎉

  • I have a suggestion regarding your code that I believe will be of great interest to you.

CSS 🎨:

  • Looks like the component button hover state background has not been properly set yet. Because currently a solid color is added but we want to add a gradient.
  • Just add the following css rules
button:hover {
    background: linear-gradient(#6542FE, #342CE2);
}
  • And another thing is to move the cursor: pointer to button not on button:hover because the cursor property needs to be declared on normal state of button element not during any pseudostates like :hover, :active etc.
  • Now your component's button background for hover state has been set properly

.

I hope you find this helpful 😄 Above all, the solution you submitted is great !

Happy coding!

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord