/order-summary-component-main

This is my solution to the Order summary component challenge on Frontend Mentor.

Primary LanguageCSSMIT LicenseMIT

Frontend Mentor - Order summary card solution

This is a solution to the Order summary card 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:

  • See hover states for interactive elements

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox

What I learned

I'm use screen media.

@media screen and (min-width: 768px) {
  body {
    background:var(--Pale-blue) url(images/pattern-background-desktop.svg) no-repeat;
    background-size: 100%;
  }
}
@media screen and (max-width: 768px){
    body {
        background: var(--Pale-blue) url(images/pattern-background-mobile.svg) no-repeat;
        background-size: 100%;
    }
}

Author

Acknowledgments

Thanks so much to anyone providing feedback on my solution. It definitely helps to find new ways to code and find easier solutions!