Skip to content

MehrshadHeisenberg3/FEM-Order-Summary-Component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Order Summary Card Solution

This is a solution to the Order summary card challenge on Frontend Mentor. I really learned many things and had a lot of fun doing this challenge!

Table of contents

Overview

This was one of the most interesting challenges that I have done and that was because of using svg in the background! I already used a real image to fill the background but I haven't used svg to do this. So in this mini project, I used 2 svg to fill the background.

Screenshot

Screenshot from the solution!

Links

My process

So I always take some time to build a sketch for myself either in my head or writing it down for bigger projects. I look for places where we need grid and where we need flexbox.

Then, I first only the HTML not doing anything in CSS and I build the HTML with the sketch that I have already designed for myself. Only then I start styling them with CSS and it makes my work a lot faster.

Also in this mini project there was something interesting and that was using svg as background. So I finally figured it out and did the best that I could. All in all it was a great project and I learned a lot building it!

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Desktop-first workflow

What I learned

So as I said, the main thing that I learned in this project was using svg as background. Also I used flexbox in a lot of different ways. For example the "plan" box is made of 3 flexboxes!

I used svg for background like this and I used after and before pseudo classes:

<h1>Some HTML code I'm proud of</h1>
body::after {
  content: url(images/pattern-background-desktop2.svg);
  /* width: 5rem;
  height: 140rem; */
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: rotate(180deg) translate(0%, 12%);
}
body::before {
  content: url(images/pattern-background-desktop.svg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform: translate(0%, -12%);
}

Also, because I moved the bottom a little bit higher, I needed to set the background color to the bottom svg so that nobody finds out that I have moved the svg up a little bit! It's like this:

body {
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  position: relative;
  overflow: hidden;
  background-color: #e0e8ff;
  z-index: -2;
}

I also used overflow: hidden; for body so that no scrolling happens!

But then I found out that I can use only this piece of code to all of that and it is AMAZING:

  body {
    background: url(images/pattern-background-desktop.svg), #e1e9ff;
    background-repeat: no-repeat, no-repeat;
  }

Continued development

So I guess I still need to work with svg as background I think I know what I am doing at this level!

Author

About

Another challenge from frontend mentor and a great learning project!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published