KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
bootstrap-itscss
★ 33
Open GitHub ↗
ITCSS port of Bootstrap SASS
Download README (.md)
Explore Similar Repositories
overkyll-jekyll-theme
:
A simple starter theme with an ITCSS Sass files organisation, a flexbox grid and modular typography
haiticss
:
Baseline for wearing ITCSS. Based on INUIT CSS from Harry Roberts
flexton
:
Flexton is an ultra-minimalist and responsive theme for Jekyll
Meow-Boilerplate
:
:package: :cat2: Awesome Meow Boilerplate for creating Front-end projects in seconds!
struct-scss
:
An SCSS framework based on BEM, SUIT, SMACSS, and ITCSS
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
bootstrap-itscss
?
Download (.md)
# 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 ```