| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2016-10-08 | 809 Bytes | |
| v0.4.0 - Changelogs! Yay!.tar.gz | 2016-10-08 | 749.3 kB | |
| v0.4.0 - Changelogs! Yay!.zip | 2016-10-08 | 741.1 kB | |
| Totals: 3 Items | 1.5 MB | 0 | |
- Fixed basefont
- Added code (code, pre, div.code, kbd)
- Moved Brand colors to _variables.scss
- Added scalable grid system (see below)
- Added image stuff
- Updated Normalize.css to
5.0.0 - Added vars
- Added Gitter badge (#2)
Grid:
:::html
<div class="row">
<div class="col-sm-5">This will diaplay as 5/12 on devices with width>=768px, and 100% on smaller</div>
<div class="col-md-5">This will diaplay as 5/12 on devices with width>=992px, and 100% on smaller</div>
<div class="col-lg-5">This will diaplay as 5/12 on devices with width>=1200px, and 100%on smaller</div>
<div class="col-sm-1 col-md-2 col-lg-3">This will display as 100% on phones, 1/12 on tablets (Portrait), 2/12 on tablets (landscape), and 3/12 on laptops and desktops</div>
</div>