-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #505 from corysimmons/master
7.0.0: Make Jeet Great Again
- Loading branch information
Showing
73 changed files
with
1,296 additions
and
1,633 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,7 @@ Icon | |
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
|
||
### Custom ### | ||
todo.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "6.6.0" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,37 @@ | ||
<p align="center"> | ||
<img width="190px" src="https://mojotech.github.io/jeet/img/jeet-logo-color.svg" title="Jeet Grid System"> | ||
</p> | ||
<img width="220px" src="https://mojotech.github.io/jeet/img/jeet-logo-color.svg" title="Jeet Grid System"> | ||
|
||
<p align="center"> | ||
<img src="https://img.shields.io/npm/v/jeet.svg"> | ||
<img src="https://img.shields.io/bower/v/jeet.svg"> | ||
<img src="http://img.shields.io/npm/dm/jeet.svg"> | ||
<a href="https://gitter.im/mojotech/jeet"><img src="https://img.shields.io/gitter/room/nwjs/nw.js.svg?maxAge=2592000?style=flat-square"></a> | ||
</p> | ||
<a href="https://gitter.im/mojotech/jeet"><img src="https://img.shields.io/gitter/room/nwjs/nw.js.svg?maxAge=2592000?style=flat-square"></a> | ||
<img src="https://img.shields.io/npm/v/jeet.svg"> | ||
<img src="http://img.shields.io/npm/dm/jeet.svg"> | ||
|
||
# This is a rollback to 6.1.2! | ||
[Jeet](http://jeet.gs) is a simple fractional grid system for **[Sass](scss)** and **[Stylus](styl)**. | ||
|
||
> ❗️ Jeet 6.1.3 and 6.1.4 introduced breaking changes that have caused a lot of issues. This is a rollback to 6.1.2. Moving forward, we will strictly adhere to semver and apologize for any broken builds. 🤕 Thanks for sticking with us as we grow! | ||
Learn the [API](docs) in minutes and begin tossing together grids. | ||
|
||
--- | ||
Check this out: | ||
|
||
[Jeet](http://jeet.gs) is the most advanced, yet intuitive, grid system on the market today. | ||
```fish | ||
npm install -D jeet | ||
``` | ||
|
||
By making use of the power of pre-processors, we can now pass real fractions (or float numbers) as context that generates a percentage based width and gutter for grids. We're able to do this while maintaining a consistently sized infinitely nestable gutter. | ||
```scss | ||
@import 'node_modules/jeet/scss/index'; | ||
|
||
Check out [this presentation](http://corysimmons.github.io/presentations/the-rise-of-ratio-grids) to learn more about what sets Jeet above other grid systems, then enjoy one of Jeet's many pre-processor flavors: | ||
.container { | ||
@include center(); | ||
} | ||
|
||
- [Stylus](stylus) | ||
- [SCSS](scss) | ||
.container div { | ||
@include column(1/3); | ||
} | ||
``` | ||
|
||
Want to sandbox it right this very second? Fork an [SCSS](http://bit.ly/jeet6-scss) or [Stylus](http://bit.ly/jeet6-stylus) example on CodePen. | ||
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). | ||
|
||
Explore [Jeet Integrations](https://github.com/mojotech/jeet/wiki/Jeet-Integrations) to see some community-backed plugins to your favorite frameworks and libraries. | ||
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? | ||
|
||
#### Browser Support | ||
- IE9+ and all major browsers without polyfills like Selectivizr | ||
- With a nice boilerplate like [Boy](http://github.com/corysimmons/boy), seamless and responsive in IE7+ ([gallery](http://imgur.com/a/Z0YPD)) | ||
|
||
--- | ||
Explore [Official Integrations](docs/integrations) to see some community-backed plugins to your favorite frameworks and libraries. | ||
|
||
##### Jeet is curated by loving hands at... | ||
<a href="http://mojotech.com"><img width="140px" src="https://mojotech.github.io/jeet/img/mojotech-logo.svg" title="MojoTech's Hiring"></a> <sup>(psst, [we're hiring](http://www.mojotech.com/jobs))</sup> | ||
#### Browser Support | ||
|
||
##### Thanks to all the [awesome contributors](https://github.com/mojotech/jeet/graphs/contributors) | ||
- IE9+ without help. IE8+ with Selectivizr. Obviously always use Autoprefixer. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Jeet Docs | ||
|
||
Jeet is available in Sass and Stylus. Sass is more popular, so the docs are written solely in Sass. | ||
|
||
The API is *very* similar so if you're using Stylus you should be able to tell what's what. | ||
|
||
Officially maintained [integrations](integrations) are available. |
Oops, something went wrong.