I finished my weather app and got it uploaded this evening. I’ve really enjoyed this and taken it a little bit out of scope but it was so good to do the lessons in context and going to find the answers I needed, I just couldnt stop
Please let me know what you think. I’ve worked hard and spent about 50hours including bugs, I hope you like it.
Looks very nice one of the cleanest designs I have seen, one thing that troubles me tho is your toggle switches kind look like text input boxs and its not clear what they would toggle to until you click em.
Yeah I think so. I sort of feel it needs a hint of shadow on the inner white just to hint at the switch being inset, you have shadow already so it may compliment. Still this is one of the best designs, makes me jealous lol.
Ah you’ve a good eye for detail thankyou, I’ve added that and it looks better. I might make it a bit shallower when I switch my computer back on tomorrow - what you think?
Thanks, it was supposed to be like Google material design and as you can see that went out of the window and now it’s a flat-but-with-some-shadows hybrid.
I did the layout with flexbox, there’s no bootstrap so I got alot more freedom of how the panels behave at different sizes.
How about a div that has a height just taller than the screen (however you would set that)? Then you could position it behind everything else so that it’s always there and at that same height whether the forecast is extended or not.
I’m no expert though, something like this may well be bad practice.
Ah, that’s right, vh. But that’s dynamic, right, so a shorter screen shouldn’t matter? And you could use 101vh, so whatever the screen height you’d have the hidden div forcing the scrollbar to appear.
I always use the vh somewhere in my page too… i’ve been scratching my head about that bar for the last week whilst working on the app, body{height: 101vh} did indead sort it by making the bar permanent.