Skip to content
/ jeet Public

The most advanced, yet intuitive, grid system available for Sass or Stylus

License

Notifications You must be signed in to change notification settings

mojotech/jeet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 5, 2017
8baa4d3 · Sep 5, 2017
Oct 5, 2016
Sep 4, 2017
Sep 4, 2017
Sep 4, 2017
Sep 4, 2017
Feb 16, 2014
Oct 5, 2016
Oct 5, 2016
Oct 5, 2016
Nov 20, 2016
Mar 15, 2017
Nov 20, 2016
Nov 19, 2016
Sep 4, 2017

Repository files navigation

Jeet 7.0.0 is here!

7.0.0 breaks a lot of stuff. Be sure to read the migration guide!

Jeet is a simple fractional grid system for Sass and Stylus.

Learn the API in minutes and begin tossing together grids.

Check this out:

npm install -D jeet
@import 'node_modules/jeet/jeet';

.container {
  @include center();
}

.container div {
  @include column(1/3);
}

Jeet functions accept fractions (or float numbers) and generates a percentage width and gutter for grids. We're able to do this while maintaining a consistently-sized, infinitely-nestable, gutter (so long as you provide the parent element's fraction as context).

The API is documented in Sass, but we've worked hard to make the API very similar in both preprocessors. @include column(1/2); in SCSS would be column(1/2) in Stylus, ya dig?

Explore Official Integrations to see some community-backed plugins to your favorite frameworks and libraries.

Browser Support

  • IE9+ without help. IE8+ with Selectivizr. Obviously always use Autoprefixer.