Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastiandedeyne/tinybootstrap
A stripped down version of sass-bootstrap containing only the grid system and some responsive utilities. Also added an 'tn' breakpoint (smaller than col-xs-*) for the grid.
https://github.com/sebastiandedeyne/tinybootstrap
Last synced: 28 days ago
JSON representation
A stripped down version of sass-bootstrap containing only the grid system and some responsive utilities. Also added an 'tn' breakpoint (smaller than col-xs-*) for the grid.
- Host: GitHub
- URL: https://github.com/sebastiandedeyne/tinybootstrap
- Owner: sebastiandedeyne
- License: mit
- Created: 2014-10-02T22:20:05.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-09T14:13:53.000Z (over 8 years ago)
- Last Synced: 2024-10-05T06:36:45.295Z (about 1 month ago)
- Language: CSS
- Homepage:
- Size: 25.4 KB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tiny Bootstrap
A stripped down version of sass-bootstrap containing only the grid system and some responsive utilities.
## Extra Features
### 24-column grid
The default grid is now 24 columns instead of 12.### .no-gutter
Class that can be added to an element above your columns to set the gutter to 0.
### New Breakpoint: 'tn'
Added a 'tn' breakpoint which is between col-xs-* and col-sm-*. Also works with the responsive utilities.### Breakpoints Mixin
A mixin to easily add breakpoints in your sass code.```
.class {
@include breakpoint(tn|sm|md|lg) {
// ...
}
}
```## Build
```
sass --update tinybootstrap/_tinybootstrap.scss:dist/tinybootstrap.css --sourcemap=none --style expanded && sass --update tinybootstrap/_tinybootstrap.scss:dist/tinybootstrap.min.css --sourcemap=none --style compressed
```