Foundation includes a rock-solid, tested, 12-column grid which is both fluid and responsive. It adapts to different screen sizes through percentage-based widths as well as through media queries. That means you can quickly lay out complex pages without worrying that they won’t show up right on an iPhone, or an Android tablet, or a Blackberry, or a TV. You’ll be able to see exactly how they look, and how they adapt to different sizes, then plan accordingly.
Extra: typography, buttons, tabs, pagination, image grids, forms and more are all included.
{code type=xhtml}
{/code}
The 16 columns can be combined, or folded, into 8 columns for tablet-sized screens, and into 4 columns for mobile-sized ones. This way GGS can easily cover any screen sizes from 240 up to 2560 pixels.
Elastic gutters are created by positioning elements in the center of the gutter (using percentages) and giving them a padding equal to half of the gutter’s width. For example:
{code type=xhtml}
.wrapper {
box-sizing: border-box; /* + vendor prefixes */
width: 50%;
margin-left: 25%;
/* Assuming gutter width = 1.5em */
padding: 0 0.75em;
}
{/code}
Amazium uses 4 main media queries to adjust the layout of your website to match the size of your screen. The media queries in Amazium only target at max and min widths rather than device sizes or orientations, which means that any new mobile or browsers that don’t match the exact dimensions will still benefit from the styling.
Made from the 960.gs
{code type=xhtml}
{/code}
Set column and gutter widths, choose the number of columns, and switch between pixels and percentages.
All without any .grid_x classes in your markup. Oh, and did we mention it’s responsive?
Runs on LESS, SCSS, or Stylus.
{code type=html}
{/code}
{code type=css}
@column-width: 60;
@gutter-width: 20;
@columns: 12;
header { .column(12); }
article { .column(9); }
aside { .column(3); }
@media (max-device-width: 960px) {
article { .column(12); }
aside { .column(12); }
}
{/code}
Skeleton is a small collection of CSS & JS files that can help you rapidly develop sites that look beautiful at any size, be it a 17″ laptop screen or an iPhone.
{code type=html}
{/code}
SG is prepared for 4 distinct ranges of screen size: screens 720px, screens 720px, screens than 985px, and screens than 1235px.
Most grid systems use one class for all units of a single size, leaving units oblivious to where they fit into the grid. That leaves you with .first and .last classes. With SG each slot knows whether it’s first, middle, or last in its respective row; no extra classes needed.
{code type=html}
Combining slots is as simple as connecting their slot numbers with dashes.
.slot-0
.slot-1-2
.slot-3-4-5
{/code}
The Columnal CSS grid system is a “remix” of a couple others with some custom code thrown in. The elastic grid system is borrowed from cssgrid.net, while some code inspiration (and the idea for subcolumns) are taken from 960.gs.
It is 1140px wide, but since it is fluid, will respond to the width of most browsers.
{code type=html}
{/code}
{code type=xhtml}
…
…
…
…
{/code}
It’s an ultramodern CSS-Framework which comes with common magazine design elements such as pagination, gutters and of course a basic grid. Made for the iPad.
{code type=xhtml}
Column 1
Column 2
Column 3
Column 4
{/code}
A responsive CSS framework, MQFramework utilises the @media property to allow you to design your sites for browsers of all sizes. Based on a 12 column grid, MQFramework degrades perfectly down to mobile screen sizes
{code type=css}
@media only screen and (min-width: 960px) and (max-width: 1139px) {
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
}
@media print{}
{/code}
{code type=html}
Grid 12
Grid 1
Grid 11
Grid 2
Grid 10
{/code}
Comments
Copyright 2013 - Blog of Francesco Mugnai - Be happy :)
If you see something here that has not been properly attributed or you would like removed, please
contact me.
Maik - 18/11/11 -
Great collection!
But please look at inuit.css – this framework is just awesome and really needs to be added to your list :)
webexstudios - 02/02/12 -
Thank you for cool collection! Nice work! :)
Sai Vallampati - 25/12/12 -
Good collection… Add IVORY Framework into your collection, it is also one of the best framework.
Sai Vallampati - 25/12/12 -
IVORY Framework – http://zoymdia.com/kanth/ivory https://github.com/kanthvallampati/ivory.
Sai Vallampati - 25/12/12 -
Good collection… Add IVORY Framework into your collection, it is also one of the best framework.
Sai Vallampati - 25/12/12 -
IVORY Framework – http://zoymdia.com/kanth/ivory https://github.com/kanthvallampati/ivory.