Bootstrap-like flexbox-based responsive grid system.
Partial class names compatibility:
- Bootstrap
- Flexbox Grid
http://sizzy.co?url=http://pfrankov.github.io/greedo/
http://pfrankov.github.io/greedo/
https://jsbin.com/zojane/edit?html,output
npm install --save greedo
<link rel="stylesheet" href="//cdn.rawgit.com/pfrankov/greedo/v2.1.0/greedo.css"/>
With Webpack
// ES2015+ / TypeScript
import "greedo";
// CommonJS
require("greedo");
Nothing special. Just regular CSS loaders.
{
test: /\.css$/,
use: [
{
loader: "style-loader"
},
{
loader: "css-loader"
}
]
}