Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
21–30 of 36 posts
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#22I prefer the ones that use a mobile first approach, which is more future-proof and is supported on more devices.
Also, another thing to consider is fluid-width vs fixed-width. Fluid width layouts are harder, but much more future proof. The mobile device landscape changes fast, and there are lots of sizes to design for. A fluid-width website would be much better in this case.
Some of these are Gridless[1], HTML5 Boilerplate[2] and 320 and Up[3].
[1]: http://thatcoolguy.github.com/gridless-boilerplate/
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#23Love the scaling. Especially how the grid becomes stacked at mobile-width.
I'm not sure what you mean by "scaling". Just because it uses a media query to serve a different style based on the screen size doesn't mean it "scales well". In particular, this reacts quite badly to zooming, either in a desktop browser (chrome/linux): http://imgur.com/r1z9W or in a mobile browser (android): http://imgur.com/7aP39 . In the desktop case, the font size doesn't change even if I zoom in the entire page.…
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#24This is @dhg (creator of Skeleton)and just wanted to say I was pumped to see it on Hacker News. All feedback is well received and I'm actually in the process of releasing an update that will remedy the text-resize issue when font-size is bumped up or down, along with some other small bug fixes.
In terms of fluid vs. fixed I chose to have a set number of fixed resolutions because it allows for a bit more control at those sizes and has a set of associated media query sizes . It also allows for a nested grid which is not really achievable with a fluid grid.
Thanks for the feedback again everyone. I just started a new job that is keeping me busy (in an awesome way), but am going to try to get out an update next weekend.
Cheers!
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#25Love the scaling. Especially how the grid becomes stacked at mobile-width.
I'm not sure what you mean by "scaling". Just because it uses a media query to serve a different style based on the screen size doesn't mean it "scales well". In particular, this reacts quite badly to zooming, either in a desktop browser (chrome/linux): http://imgur.com/r1z9W or in a mobile browser (android): http://imgur.com/7aP39 . In the desktop case, the font size doesn't change even if I zoom in the entire page.…
By "love the scaling", I guess I meant "I love media queries."
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#26Love the scaling. Especially how the grid becomes stacked at mobile-width.
I'm not sure what you mean by "scaling". Just because it uses a media query to serve a different style based on the screen size doesn't mean it "scales well". In particular, this reacts quite badly to zooming, either in a desktop browser (chrome/linux): http://imgur.com/r1z9W or in a mobile browser (android): http://imgur.com/7aP39 . In the desktop case, the font size doesn't change even if I zoom in the entire page.…
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#27Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#28Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#29Edit: That is, of course, unless it's something like YAML or SASS or LESS which completely redefine how to write the code.
Re: Skeleton: A Beautiful Boilerplate for Responsive, Mobile-Friendly Development
#30Can definitely see myself using this with jQuery Mobile. Thanks.