Skip to content

Linkd-Inc/nacho

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nacho - A minimal, highly customizable flexbox framework

npm version Build Status

Installation

To add nacho to your web page, simply paste this code into the head of your document,

<link rel="stylesheet" href="https://unpkg.com/nacho/dist/nacho.min.css">
<!-- or -->
<link rel="stylesheet" href="https://unpkg.com/nacho/dist/nacho.css">

or you can install nacho using a package manager like npm

$ npm install nacho

If you want you can still download nacho here.

Example:

<div>
  <div class="row">
    <!-- For column width, use the number / 12 -->
    <div class="col-xs-3"></div>
    <div class="col-sm-3"></div>
    <div class="col-md-3"></div>
    <div class="col-lg-3"></div>
  </div>
  <div class="col">
    <!-- The col parent class makes items stack vertically -->
    <div></div>
    <div></div>
    <div></div>
  </div>
</div>

License

Copyright (c) 2017 Wireflare. Licensed under the MIT License (MIT)