CSS grid and DIY again :)

Solution retrospective
I cant find the grey color of the first <p> . it's not included in the readme file isnt it?
feedbacks are welcome !
Please log in to post a comment
Log in with GitHubCommunity feedback
- @leverh
Hey Yan, I think the whole thing looks great! As far as the grey goes, i used hsl(218, 22%, 67%) on mine. I use visual studio code which allows you to hover over the color you coded and then change it through the visualization of the color palette. Don't know if you can you it with scss though (that i noticed you're using).
Marked as helpful - @tesla-ambassador
Hey Yann, pretty solid solution you've got here! For the text color problem, sometimes you can improvise (the challenges encourage us to be creative!) but your text color is really okay! The main thing I'd like to point out is the responsiveness, here's a tip:
- I noticed that you set a "margin" property to your grid-container in order to center it. You might want to instead style your <main> like this:
main { height: 100vh; display: flex; justify-content: center; align-items: center; }
this will center your "grid-container" within your <main> at any screen width and it won't break your responsiveness! Happy Coding!
Marked as helpful
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