Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mojotech/jeet

The most advanced, yet intuitive, grid system available for Sass or Stylus
https://github.com/mojotech/jeet

grid sass stylus

Last synced: about 6 hours ago
JSON representation

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

Awesome Lists containing this project

README

        



# Jeet 7.0.0 is here!

> 7.0.0 breaks a lot of stuff. Be sure to read [the migration guide](https://github.com/mojotech/jeet/wiki/Migrating-from-6-to-7)!

[Jeet](http://jeet.gs) is a simple fractional grid system for **[Sass](scss)** and **[Stylus](styl)**.

Learn the [API](docs) in minutes and begin tossing together grids.

Check this out:

```fish
npm install -D jeet
```

```scss
@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](docs/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.