Design comparison
Solution retrospective
Any feedback on how this project can be improved upon will be very much appreciated.
Community feedback
- @Bayoumi-devPosted over 2 years ago
Hey! It looks good!...
My suggestions:
An easy way to handle the background
circles
, Give the body or the profile card container the following style to put thesecircles
as abackground image
:body { //... background: url("./images/bg-pattern-top.svg") right 50vw bottom 40vh no-repeat, url("./images/bg-pattern-bottom.svg") 50vw 50vh no-repeat var(--dark-cyan); /* <---- Add */ } .main-container::before { /* <---- Remove */ //... } .main-container::after { /* <---- Remove */ //... }
- I suggest you put the status of the profile card into the
list item
to add moresemantics
to your project,Div
's don't do much for semantics but a list is much more meaningful..:
<ul class="stats"> <li><span class="stats-num">80K</span>Followers</li> <li><span class="stats-num">803K</span>Likes</li> <li><span class="stats-num"> 1.4K</span>Photos</li> </ul>
Hope this help!... Keep it up👍
Marked as helpful1@Promise30Posted over 2 years ago@Bayoumi-dev Thank you very much. Your comment has been really helpful, I will make the necessary changes and also implement them in my future projects.
0 - I suggest you put the status of the profile card into the
- @Sdann26Posted over 2 years ago
Hi Promise!
Apart from the recommendations above you can try adding letter-spacing to the words below the numbers to make them separate letters.
Like this:
.stats .numbers p { font-size: 14px; font-weight: 400; color: var(--dark-gray); letter-spacing: 1px; }
I think that's my little input I can give you, everything else seems to me to be pretty good, good luck :D!
Marked as helpful0@Promise30Posted over 2 years ago@Sdann26 Thank you very much. I will make the necessary change and also take note of it in my future projects.
1
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