Skip to content

DarrickFauvel/fem07-stats-preview-card-component

Repository files navigation

Frontend Mentor - Stats preview card component solution

This is a solution to the Stats preview card component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout depending on their device's screen size

Screenshot

Links

My process

Built with

  • Mobile-first workflow
  • Semantic HTML5 markup
  • CSS Grid
  • Sass - CSS with superpowers
  • Parcel - Zero config build tool

What I learned

I learned about the CSS property mix-blend-mode and how to apply it to this project.

The image used in the card is a black & white photo. So, I placed the <img> inside a <div> with a soft violet background color.

Using the following CSS:

img {
  mix-blend-mode: multiply;
  opacity: 0.75;
}

I believe I got the results that match the design.

Useful resources

CSS: mix-blend-mode

Author