DEV Community

Discussion on: Feedback on my Portfolio/Blog.

Collapse
 
aurelkurtula profile image
aurel kurtula • Edited

I like it.

It's clean and balanced.

Few things to look at

  1. When you hover over "read more" button you see that things that aren't supposed to move do move! Simply make sure to not remove the border on hover. You have this:
.btn{
    border: 1px solid #BCBBBB;
}
.btn:hover{
    border: 0px solid #BCBBBB;
}

And that's the only thing you must not change. You could just do this:

.btn{
    border: 1px solid #BCBBBB;
}
.btn:hover{
    border: 1px solid transparent;
}

So you are not removing pixels off the page.

As for whether you should use a personal blog or dev.to or medium. The jury is out, you should post everything in your blog and re-publish them over at other platforms.

My personal preference I love the circular drop down when on small screen, but doesn't look good on a big screen. So maybe add a media query where by when on big screen have it drop down the old fashioned way, and keep the circular on mobile screen.

Footer: in your 404 page, you can see the footer doesn't stick to the bottom. It can be done with css. Everytime I need to do that I sort of search something like "sticky footer" I think and you'll get the gist of what needs to be done.

(In the footer you have the word "tag", not sure why that's there)

Cool job.

Collapse
 
leanminmachine profile image
leanminmachine

When you say blog, you mean personal blog like a blog page on your portfolio?

Collapse
 
aurelkurtula profile image
aurel kurtula

Yes - like the example at hand.