Finished my Local Weather App Project, Need Feedback

I finally managed to finish the weather app project and was looking to get some feedback on the code and design. I’ve been working on this project for a few days and would gladly appreciate any advice on things I could improve on.

Here is the Codepen link: http://codepen.io/Hellchrine/full/MJpJdY/

I like it man. Its sleek. The only advice I have is to make your background picture cover the entirety of the screen you can do that with this code if you have your image linked to your body:

body{
background: no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

Other then that I like it. The button function you have for your conversion is really neat!

I just finished mine as well would you mind taking a look and giving me your opinion?

Link: http://codepen.io/the702guy/full/apKBbY/

Thanks for the feedback, your project looks really nice as well. The way you divided your info into blocks makes them really stand out and gives the page a cool style. They also mix really well into the background. The only thing I would add is hovered animations for your Celsius/Fahrenheit buttons to outline that they are interactive. Other than that, your web page looks great.

1 Like