Skip to content

zemirco/flexbox-grid

Repository files navigation

Flexbox Grid

Grid system built on top of flex. Heavily influenced by Bootstrap.

Perfect partner for Topcoat but it can be used with or without any framework you want.

Example

Check out the live demo or take a look at the example folder.

How to use

Flexbox grid uses classes like Bootstrap so you don't have to learn anything new.

<div class="row">
  <div class="col-xs-1">
    col-xs-1
  </div>
</div>

<div class="row">
  <div class="col-xs-6">
    col-xs-6
  </div>
</div>

<div class="row">
  <div class="col-xs-2 col-xs-offset-6">
    col-xs-2 col-xs-offset-6
  </div>
</div>

There are also classes that fill the available space automatically.

<div class="row">
  <div class="col-auto">
    col-auto
  </div>
  <div class="col-auto">
    col-auto
  </div>
  <div class="col-auto">
    col-auto
  </div>
</div>

Inspiration

Development

Make your changes in flexbox-grid.styl and run grunt to compile flexbox-grid.css and flexbox-grid.min.css

Changelog

v1.0.0 - 28/10/2013
  • renamend col-* classes to responsive xs, sm, md, lg classes
  • made final CSS more readable by extending placeholder selectors
  • added .container class as wrapper for .row - fixes horizontal overflow
v0.0.1 - 21/10/2013
  • initial release

License

Copyright (C) 2013 [Mirco Zeiss](mailto: mirco.zeiss@gmail.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Grid system using CSS flex properties

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published