venomcss
v1.0.1
Published
VenomCSS: Flexbox CSS Library
Downloads
5
Readme
Venom CSS
A CSS grid library based on flebox.
Getting Started
NPM:
$ npm install --save venomcss
Git:
$ git clone https://github.com/nitrogenlabs/venomcss
Usage
Precompiled CSS (download from the css folder). Full stylesheet is available but lacks the power of custom variables.
Normalize.css
For improved cross-browser rendering, we use Normalize.css, a project by Nicolas Gallagher and [Jonathan Neal]("https://github.com/jonathantneal"].
Container
.container
The grid container. Wrapping all rows used within a view. Containers may be nested.
<div class="container">
...
</div>
.container-fluid
Extends the container to full width, 100%. Views will maintain the same width as the browser.
<div class="container container-fluid">
...
</div>