Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 2.32 KB

README.md

File metadata and controls

72 lines (49 loc) · 2.32 KB

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

Overview

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Google Fonts - Family: Outfit

What I learned

Here I learned how to start doing responsive pages, using percentage and relative size. I'm sure I can improve the code, but this was the first page that I built alone withou any course or tutorial.

I need to understand better how to use the media detector to improve websites, start to think what I'll need to add here before getting to this part so I don't need to change much on the base code.

int his challenge I added this to make it responsive when the screen widht is smaller then the QR Code block.

@media (max-width:350px) { 
    .qrblock {
        width: 80vw;
    }
}

Continued development

I'm still learning, so there is a lot I want to improve and learn, still haven't decided if I want to focus on back or front-end

Useful resources

position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);

Author