UNPKG

bootstrap-itscss

Version:

> ITCSS (Inverted Triangle CSS) port of Bootstrap SASS

104 lines (98 loc) 3.39 kB
# 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 ```