1.0.0 • Published 6 years ago

bbootstrap v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago
,-----.   ,--.  ,--. ,------. ,--.   ,--.     ,--.  ,--. ,------. ,--------. 
|  |) /_  |  ,'.|  | |  .-.  \ \  `.'  /      |  ,'.|  | |  .---' '--.  .--' 
|  .-.  \ |  |' '  | |  |  \  : '.    /       |  |' '  | |  `--,     |  |    
|  '--' / |  | `   | |  '--'  /   |  |   .--. |  | `   | |  `---.    |  |    
`------'  `--'  `--' `-------'    `--'   '--' `--'  `--' `------'    `--'    

BBootstrap

A set which includes some useful components. Demo

Components

Note: Do not include above components in your project. This project has included them.

Quick start

<link rel="stylesheet" href="dist/css/bbootstrap.min.css">
<script src="dist/js/bbootstrap.min.js"></script>

Changes

v1.0.0

  • Add pretty Checkbox and Radio [Demo]

    <!-- checkbox -->
    <div class="form-check checkbox checkbox-primary">
        <input class="form-check-input" id="checkbox1" type="checkbox">
        <label class="form-check-label" for="checkbox1">Check me</label>
    </div>
    
    <!-- radio -->
    <div class="form-check radio radio-primary">
        <input class="form-check-input" type="radio" name="radio1" id="radio1" value="option1" checked>
        <label class="form-check-label" for="radio1">Option 1</label>
    </div>