Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ninjasort/bootstrap-itscss
ITCSS port of Bootstrap SASS
https://github.com/ninjasort/bootstrap-itscss
Last synced: 1 day ago
JSON representation
ITCSS port of Bootstrap SASS
- Host: GitHub
- URL: https://github.com/ninjasort/bootstrap-itscss
- Owner: ninjasort
- License: mit
- Created: 2015-04-13T00:32:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-06T04:14:21.000Z (about 8 years ago)
- Last Synced: 2024-12-08T08:26:39.862Z (21 days ago)
- Language: CSS
- Size: 233 KB
- Stars: 33
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bootstrap-itscss
> ITCSS (Inverted Triangle CSS) port of Bootstrap SASS
## ITCSS
ITCSS is an archiecture methodology for scalable CSS by [@csswizardry](https://twitter.com/csswizardry).
To learn more, watch his talk [Managing CSS Projects with ITCSS](https://www.youtube.com/watch?v=1OKZOV-iLj4).*No longer using bower*
```
npm i bootstrap-itscss --save
``````
├── base
│ ├── _code.scss
│ ├── _component-animations.scss
│ ├── _forms.scss
│ ├── _grid.scss
│ ├── _scaffolding.scss
│ ├── _tables.scss
│ └── _type.scss
├── components
├── generic
│ ├── _normalize.scss
│ └── _print.scss
├── objects
│ ├── _alerts.scss
│ ├── _badges.scss
│ ├── _breadcrumbs.scss
│ ├── _button-groups.scss
│ ├── _buttons.scss
│ ├── _carousel.scss
│ ├── _close.scss
│ ├── _dropdowns.scss
│ ├── _forms.scss
│ ├── _input-groups.scss
│ ├── _jumbotron.scss
│ ├── _labels.scss
│ ├── _list-group.scss
│ ├── _media.scss
│ ├── _modals.scss
│ ├── _navbar.scss
│ ├── _navs.scss
│ ├── _pager.scss
│ ├── _pagination.scss
│ ├── _panels.scss
│ ├── _popovers.scss
│ ├── _progress-bars.scss
│ ├── _responsive-embed.scss
│ ├── _tables.scss
│ ├── _thumbnails.scss
│ ├── _tooltip.scss
│ └── _wells.scss
├── settings
│ ├── _glyphicons.scss
│ ├── _variables.scss
│ └── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── themes
│ └── _theme.scss
├── tools
│ ├── _mixins.scss
│ └── mixins
│ ├── _alerts.scss
│ ├── _background-variant.scss
│ ├── _border-radius.scss
│ ├── _buttons.scss
│ ├── _center-block.scss
│ ├── _clearfix.scss
│ ├── _forms.scss
│ ├── _gradients.scss
│ ├── _grid-framework.scss
│ ├── _grid.scss
│ ├── _hide-text.scss
│ ├── _image.scss
│ ├── _labels.scss
│ ├── _list-group.scss
│ ├── _nav-divider.scss
│ ├── _nav-vertical-align.scss
│ ├── _opacity.scss
│ ├── _pagination.scss
│ ├── _panels.scss
│ ├── _progress-bar.scss
│ ├── _reset-filter.scss
│ ├── _resize.scss
│ ├── _responsive-visibility.scss
│ ├── _size.scss
│ ├── _tab-focus.scss
│ ├── _table-row.scss
│ ├── _text-emphasis.scss
│ ├── _text-overflow.scss
│ └── _vendor-prefixes.scss
├── trumps
│ ├── _responsive-utilities.scss
│ └── _utilities.scss
├── bootstrap-it.scss
```