Skip to content

nikkehtine-fm/qr-code-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - QR code component solution

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

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • CSS Grid
  • Mobile-first workflow

What I learned

After some time of idling, I could revise some HTML and CSS, and have fun with problem solving.

Check out my usage of CSS variables and grid layout:

body {
  font-family: Outfit, sans-serif;
  font-size: 15px;
  text-align: center;
  margin: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  /* Variables */
  --width: 288px;
  --lgray: hsl(212, 45%, 89%);
  --gblue: hsl(220, 15%, 55%);
  --dblue: hsl(218, 44%, 22%);
}

Useful resources

Author

Acknowledgments

Thanks to @WitchDevelops for helping me and answering my questions!