Please review it and give feedback
https://shubham10200.github.io/portfolio/
Your portfolio looks great! You should probably link to the projects so that we can fully experience them. Their photos look pretty good.
Thank you so much for appreciation
Wow! nice portfolio website.
Hi! The website looks great, seriously. There are a couple of things I would change though.
For the header li elements, you have a :hover like this:
header li:hover {
border-bottom: 3px solid var(--main-color);
transform: translateY(-5px);
cursor: pointer;
}
This is most likely very nit-picky (just to show how great the website is when these are the only things that can be changed), but if you come from the bottom very slowly, you will reach a point in which the transition is triggered, then the element moves, and then the :hover is gone because the mouse is no longer hovering the element.
I don’t know exactly how to achieve that same behaviour without this side-effect, but if you change the translateY for padding-bottom, you will see something different (similar) without that side-effect. If you are interested we could also try to find how to achieve this behaviour without the side-effect.
And another thing I would change is at the “img-container” inside the “my-work” section. I would have some empty space between the images. The css would look something like this:
section.my-work img {
transition: 500ms ease-in transform;
width: 25%;
margin: 2%;
}
But in general, the website looks really modern and really nice.
Thank you so much
Thanks nikens ! Thank you so much for suggestion and advice . I’ll see suggested changes in website . Thanks a lot again for taking time in viewing my codes