Design comparison
Solution retrospective
This was an easy project. I didn't have that many obstacles.
What challenges did you encounter, and how did you overcome them?I almost didn't run into any problems.
What specific areas of your project would you like help with?I am just here keeping my skills sharp
Community feedback
- @kaamiikPosted about 1 month ago
-
I think your font size did not apply to your page. Take a look how you import your font.
-
You can not wrap text in a div. Use semantic tags and is much better. Here think that which tag is proper for a link.
-
Use
rem
for your font-size instead ofpx
. You can read this article to see why: https://fedmentor.dev/posts/font-size-px/ -
You also use
px
formax-width
that is wrong. You have to userem
instead.
1@VincinChristmasPosted about 1 month agoI think I went to quickly and didn't double check. I will look through this code and revise it. I am totally against px. I don't even see where I used it except for in the initial set up to have the base font-size as 16px@kaamiik
1 -
- @AdrianoEscarabotePosted about 1 month ago
Hi Vincin Christmas, how are you doing? I really loved the outcome of your project, but I have a few suggestions that I think might be helpful:
I noticed that your content is not centralized to resolve this we can do the following:
body { font-family: "Red Hat Display", serif; font-size: 16px; min-height: 100vh; width: 100vw; margin: 0 auto; padding: 0; box-sizing: border-box; display: flex; flex-direction: column; background: var(--paleblue); align-items: center; justify-content: center; }
and remove:
.page-container { background: white; width: calc(100% - 50px); max-width: 350px; box-sizing: border-box; border-radius: 10px; position: relative; transition: all 0.3s ease; /* margin: auto; */ /* margin-top: 2rem; */ border-radius: 12px; }
The rest is excellent.
I hope you find it useful. 👍
0@VincinChristmasPosted about 1 month agothanks. I will revise the code @AdrianoEscarabote
1@VincinChristmasPosted about 1 month agothis messed up my code, man. Not useful. I found my own solution after trying yours@AdrianoEscarabote
0
Please log in to post a comment
Log in with GitHubJoin 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