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
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Stats preview card component

Zarko Petrovโ€ข 210

@zp021

Desktop design screenshot for the Stats preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


This was my fifth challenge and I tried to do it in a single session and submit it as is to test myself. I feel like I need to tweak it a little more, so I'll definitely continue to work on it. I think I could have used <picture> like in the product preview challenge, but opted to try something different this time. Also, for some reason, the image overlay layer is not quite like the design, I used the accent color and opacity for it, but its not exact.

Community feedback

Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

๐Ÿ‘พHello @zp021, congratulations on your solution!

Nice code and nice solution! You did a good job here putting everything together. Iโ€™ve some suggestions for you:

To get closer to overlay effect on the photo as the Figma Design its better you use mix-blend-mode. All you need is the div under the image with this background-color: hsl(277, 64%, 61%); and apply mix-blend-mode: multiply and opacity: 80% on the img or picture selector to activate the overlay blending the image with the color of the div. See the code bellow:

img {
mix-blend-mode: multiply;
opacity: 80%;
}

Here's a good article explaining these effects with mix-blend-mode: https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode

โœŒ๏ธ I hope this helps you and happy coding!

0

Zarko Petrovโ€ข 210

@zp021

Posted

@correlucas Thanks Lucas, that it! I was sitting there, thinking how great it would be if I could change blend mode like you can in photoshop. Guess I should have googled more, didn't know it was available in css. Also, after looking at your profile it inspired me to add something to the solution I was working on, so I added a dark mode to the Order summary challenge. It's not the best I'm sure, but it works... kind of :) https://www.frontendmentor.io/solutions/my-solution-for-the-order-summary-component-challenge-dark-mode-F8U1FjkgzY

0
Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

@zp021 I liked a lots also this other challenge, amazing work, keep it up Zarko

0

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