End of the line part 1. Portfolio page done

Could be better but I’m happy enough with it and my other projects for now. Any tips/criticism is very welcome. Cheers.

2 Likes

Hey,

I think your portfolio page looks awesome. :slight_smile:

Here are two things you could improve:

  1. In your “What I’ve accomplished so far” section, the scaling effect could be a little faster in my opinion.
  2. Also in this section, maybe add a transition when you are not hovering over the boxes anymore. Right now they just scale back to normal size instantly. It would be cool if they also transitioned back slowly.

The same applies to the color transitions in your nav bar. The links also go back from white to black color instantly.

But overall this turned out really well!

Thank you for your input. I’ve implemented #2 for the projects and navbar. For #1, when you saying scaling effect you are referring to this?

.project-tile:hover {
  background-color: #fff;
  transform: scale(1.2);
  transition-duration: 0.5s;
}
```
Or did you mean the break points for my grid?

Yes, I mean the transition-duration.
I just checked out your page again: It looks better now. Good job!