Design comparison
Solution retrospective
I think the site turned out nice. I like the transitions over the links and social media icons. I had to work with the svg files a bit to get them to display the correct color especially taking into account the footer had 2 different background colors.
What challenges did you encounter, and how did you overcome them?The 2-tone h1 in the desktop view on the home page was a bit tricky to figure out. Also, I added a text transition property using CSS and JS so as the user scrolls down the page, the text loads in a slightly delayed way. I had to disable it though for the Frontend Mentor test. Since the page wasn't being scrolled, the test wasn't showing up!
Community feedback
- @brunomoletaPosted 8 months ago
Hello Stacy,
I have a suggestion to improve your homepage visually. It regards the section that has a large portrait photo with the image and the black box <div> on its right. In the
div
that wraps the latter two, you used a hard-coded:margin-bottom: 1.875rem
to distance the two.But depending on the device, this causes misalignment between the bottom of the box and the image on its left. It's what happened with your app on mine.
I suggest that you remove the hard-coded
margin-bottom
and use the following code to keep the bottom aligned:display: flex; flex-flow: column; justify-content: space-between;
Hopefully, that helps you.
Best regards from Brazil :)
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