Looking for Random Quote Generator feedback

Hi all, finally completed the Random Quote Generator project and looking for some feedback.

Link to the app is here.

Link to the GitHub repo is here.

Thanks!

I really like how you made the colors transition smoothly. I wish I had done that with mine.

Thanks! Pretty easy with a line of CSS:

body {
  transition:background-color 1.5s ease;
}

You can adjust the time to your liking.

1 Like