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.
Users should be able to:
- See hover states for interactive elements
- Live Site URL: Github Page: Order Summary Component
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
By doing this project, I learnt how to do the Mobile-first workflow which I prefer now...I also learnt how to use a background-image property in CSS.
body {
height: 100vh;
font-family: 'Red Hat Display', sans-serif;
font-size: 16px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 30px;
color: var(--desaturated-blue);
font-weight: 500;
background-image: url(images/pattern-background-desktop.svg);
background-repeat: no-repeat;
background-color: var(--pale-blue);
}
I will still be working on the responsiveness of this project as it is not very smooth for me.
- resource 1 - This helped learn how to place a background image. I really liked this pattern and will use it going forward.
- resource 2 - This is an amazing website which helps me understand most of the syntax I didn't know in CSS. I'd recommend it to anyone still learning this Front End Development.
- Github - Cybr-Coder
- Frontend Mentor - @cybr-coder
- Twitter - @cybr_coder
- Thanks to The Odin Project for giving me a solid foundation in this field.
- I will also applaud myself as I have seen massive improvement in my workflow. I started learning less than 2 months ago and I completed this project in 6hours...I think this is just the begining.