Design comparison
SolutionDesign
Solution retrospective
I decided to create all challenges to gain some experience. As a self-taught developer, it is almost impossible to gain real-life experience. I think this will help me to get a job in the future.
Community feedback
- @hitmorecodePosted about 1 year ago
Nice well done. One thing, you are missing the change in background color and show the eye icon on hover. Here is how you can fix this
.image { position: relative; /* add this line, you will need it to create the overlay */ background-color: var(---cyan); background: url(../images/image-equilibrium.jpg) no-repeat; background-size: cover; cursor: pointer; width: 100%; height: 280px; border-radius: 10px; margin-bottom: 25px; background-position: center; /* opacity: 1; */ /* you don't need this */ } /* add this to create the overlay */ .image::before { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: hsla(178, 100%, 50%, 0.35); opacity: 0; } .image:hover::before { opacity: 1; } /* you can remove this entirely */ /* .image:hover { opacity: 0.5; } */
You still need to add the border radius and the eye icon
0
Please log in to post a comment
Log in with GitHubJoin 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