Design comparison
Solution retrospective
I'd appreciate having any feedback regarding this submission.
Community feedback
- @MojtabaMosaviPosted almost 3 years ago
1- I don't know what kind of styles framework you are using but it really makes the markup unreadable, for instance if you are working with something like BEM a look at markup tells alot about how everything is working togather. I recomand you get solid grasp on css before moving on to frameworks.
2- Limit the with of you top-level container so it doesn't grow too big on large screen because the aligment of content gets inconsistent.
3- Transition help to create a more natural changes in a UI, I no expert in motion design but usage of some basic transition would make quite a differece in some sections like the navbar's underline.
4- It also a good practice if you get into habit of using landmark elements like <main>, <header> and <footer> because they standard structure of many pages and you gain some accessibility feature like allowing the user to go directly to main content with scape link. You could do something like:
<body> <header></header> <main> <div class="block"></div> </main> </body>
Keep coding :=)
Marked as helpful1 - @skyv26Posted almost 3 years ago
Hi! Yehla,
First of all, you forgot to add class on "Destination" menu, because when we hover on menu then except Destination menu, rest all looking exactly what was required (Fix it )
Because you have set height 100vh, in mobile view at some media query your text is going outside the flow of your container (blue background basically)
This are the little issue and I hope you will soon solve it.
Overall 8/10 . Best of luck..
Marked as helpful0@Yoha30Posted almost 3 years ago@skyv26 thanks for this feedback. I fixed it you can see now🌷
1@skyv26Posted almost 3 years ago@Yoha30 🤘 Yo It is rocking now 🥳
Marked as helpful1
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