Design comparison
SolutionDesign
Solution retrospective
As a newbie (1 month of studying HTML&CSS) I found the NFT image overlay + the view icon the most difficult part of this project.
I appreciate some feedback, thanks ;)
Community feedback
- @Bayoumi-devPosted over 2 years ago
Hey Anton,
- There is an issue with the
view-icon
transparent... to fix it, Usebackground-color: hsla(178, 100%, 50%, 0.5);
instead ofvar(--cyan);
and changeopacity: 0.8;
toopacity: 1;
.overlay { //... background: hsla(178, 100%, 50%, 0.5); /* <--- Changed */ } .nft-container:hover .overlay { opacity: 1; /* <--- Changed */ }
I hope this is helpful to you... Keep it up👍
Marked as helpful1 - There is an issue with the
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