Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pfrankov/greedo

Bootstrap-like flexbox-based responsive grid system.
https://github.com/pfrankov/greedo

bootstrap flexbox flexbox-grid greedo grid grid-layout grid-system responsive-grid

Last synced: 5 days ago
JSON representation

Bootstrap-like flexbox-based responsive grid system.

Awesome Lists containing this project

README

        

# :alien: Greedo
[![npm version](https://badge.fury.io/js/greedo.svg)](https://www.npmjs.com/package/greedo)
![](http://img.badgesize.io/pfrankov/greedo/master/greedo.css)
![](http://img.badgesize.io/pfrankov/greedo/master/greedo.css?compression=gzip)
Bootstrap-like flexbox-based responsive grid system.

Partial class names compatibility:
- [x] Bootstrap
- [x] Flexbox Grid

## Demo
http://sizzy.co?url=http://pfrankov.github.io/greedo/
http://pfrankov.github.io/greedo/

#### Try it!
https://jsbin.com/zojane/edit?html,output

## Installation

```bash
npm install --save greedo
```

## Usage

#### CDN
```html

```

#### With [Webpack](https://webpack.js.org/)
```javascript
// ES2015+ / TypeScript
import "greedo";

// CommonJS
require("greedo");
```

##### Webpack 2 loaders:
Nothing special. Just regular CSS loaders.
```javascript
{
test: /\.css$/,
use: [
{
loader: "style-loader"
},
{
loader: "css-loader"
}
]
}
```