SSGS is an easy-to-use grid system for the web. It allows you to quickly set up a responsive grid system using Sass. Created by Sacha Schmid.
Download Fork on GitHubWith SSGS, creating a responsive grid system is easy. You set your breakpoints, your gutters, include the file and then you're done. Yeah, it's really that easy. However, if you're happy with the default options you don't even have to set anything at all, just including the file is enough.
SSGS uses something similar to the AMCSS syntax for its components. You create grids using data-grid
and columns using data-col
. Modifiers are passed as the attribute value. Once you see an example you'll understand it right away.
To keep things small and efficient, SSGS's CSS output is optimised to be as small as possible so you don't have to worry about code bloat.
The following example creates a grid in which the columns span half the width on small screens and a quarter of the width on larger screens.
Column definitions follow the format {n}-{x}
, meaning a column spanning {n}
units of {x}
. The prefixes are defined in your Sass inside the $ssgs-prefixes
variable.
<div data-grid>
<div data-col="1-2 M1-4">
<div data-col="1-2 M1-4">
<div data-col="1-2 M1-4">
<div data-col="1-2 M1-4">
</div>
$ssgs-columns: 2 4;
$ssgs-prefixes: (
'M': '(min-width: 30em)'
);
@import 'ssgs';
Grids have two modifiers. You can remove the gutters using gutterless
or you can reverse the column order using rev
. Of course, you can also combine the two or leave them out. If you combine them, make sure you always separate them with spaces.
<div data-grid="gutterless rev"></div>
Columns don't really have any options, apart from the column definition itself, of course. Leaving the attribute value out will give you a full-width column.
<div data-col="1-2 M1-4 L1-6"></div>
The following options are available: