Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

QR Code Component

P

@julianesilvac75

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

I'm proud of how fast I came up with the solution, it took me less than two hours to finish, and for me this is very fast. I would try making more and more detailed commits next time.

What challenges did you encounter, and how did you overcome them?

It's been a while since I last practiced CSS and HTML, so remembering basic things was hard, but it was easy to remember consulting the documentation

What specific areas of your project would you like help with?

I would love any tips and recommendations on how to make my code simpler and easier to read, and also how I can organize my CSS, if I could make anything different, like if my CSS is redundant or if there's an easier way.

Community feedback

@LeviKuhaulua

Posted

Heyo, something that saves me a lot of time and headaches because I tend to mistype stuff is to define a CSS Custom Property in the :root element of my style or in the class name. You can define a custom property in CSS by doing the following:


:root {
--fw-large: 32px; 
} 

OR... 

.some-class-name {
--clr-blue: hsl(178, 100%, 50%); 
}

Then you can reference it by using var(name of custom property).

The MDN Article goes more in-depth on using CSS Custom Properties.

Have a good one!

Marked as helpful

0

P

@julianesilvac75

Posted

@LeviKuhaulua that's very helpful! Thanks for the tip :)

0
Kevin H. 10

@halekevi

Posted

You did amazing! We would love to see what you create next. Your code looks well-structured and organized.

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord