The latest version of Bootstrap based off the golden-ratio. A simple LESS/CSS style sheet is included that overrites some attributes of Bootstrap. The full version of Bootstrap is included (and untouched) with this package, including the CSS and JS files (i.e YOU DON'T NEED TO DOWNLOAD BOOTSTRAP AS WELL!)
Include goldbootstrap.css
in your project. That's all.
// Core HTML
//...
<link rel="stylesheet" type="text/css" href="goldbootstrap/css/goldbootstrap.css"> // Add support for Gold Bootstrap
If you want to use LESS Preprocessors, include gold-bootstrap.less
after your bootstrap.less
import, and that's it.
// Core LESS
//...
@import "goldbootstrap/less/goldbootstrap.less"; // Add support for Gold Bootstrap
Use any component from the regular Bootstrap. They're all included.
Extremely simple. Just use regular 'H1' through 'H6' HTML heading tags.
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Like you would do with any other Bootstrap column, simply use a set of .col-gold-sm
and .col-gold-lg
columns:
<div class="row">
<div class="col-gold-sm">...</div>
<div class="col-gold-lg">...</div>
</div>
Coming soon...
GOLD Bootstrap is always in sync with latest version of Bootstrap. If 'Bootstrap 9' comes out, we will be 'Gold Bootstrap 9' and so on.
06/30/16
- Update to Bootstrap 3.3.6
- Added gold-template.html to get you started easier
- Added media queries to collapse Gold Columns on Mobile (anything under 991px)
- Fixed Gold Columns to extend to 100%
- Including Bootstrap Fonts Folder, so you truly don't need to download Boostrap
- Clarified Readme to state that Bootstrap is included, and you don't need to download it seperately
06/16/15
- Update to Bootstrap 3.3.5
- Added Changelog to this Readme
- Various Readme updates
06/08/15
- Swapped out seperate Boostrap JS files for compiled Boostrap.js
04/24/15
- Initial release using Bootstrap 3.3.4
Kevin Rhodes is a UX Designer from San Diego who loves Photoshop and front-end coding. He also loves his cat.
© Copyright 2015 Kevin Rhodes
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.