Design comparison
SolutionDesign
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @QgQ220903, congratulations for your new solution!
🎉 Nice solution and nice code! I can see that you paid a lot of attention to your code/design. If you don’t mind I’ve some tips for you:
1.This grid can be better done with
grid-template-column: 1f 1fr
andmax-width: 1110px
..card { max-width: 1110px; display: grid; grid-template-columns: 1fr 1fr; }
2.Add the same effect of the design for the image overlaying it with
purple
there's a shortcut that is by usingmix-blend-mode
with the modemultiply
and with an opacity aroundopacity: 82%
. See the code below:img { mix-blend-mode: multiply; opacity: 82%;}
✌️ I hope this helps you and happy coding!
Marked as helpful0
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