A classless CSS framework
Go to barecss.com for examples and documentation.
BareCSS uses a simple two step process to get started:
- Download the latest release
- Link
bare.min.css
to your HTML file
-
Edit the
bare.less
file to add/remove components. -
Compile and link the resulting CSS in your HTML file
npm install npm run less
BareCSS/
├── template.html
├── css/
│ └── bare.min.css
├── icons/
│ ├── chevron-down.svg
│ ├── close.svg
│ ├── done.svg
│ └── hamburger.svg
└── less/
├── _anchor-link.less
├── _blockquote.less
├── _button.less
├── _card.less
├── _code.less
├── _footer.less
├── _grid.less
├── _input.less
├── _layout.less
├── _list.less
├── _navigation.less
├── _reset.less
├── _table.less
├── _tooltip.less
├── _transition.less
├── _typography.less
├── _utility-attributes.less
├── _variables.less
└── bare.less
Long Sien
ss1978
- The
package.json
file was copied from the ss1978/BareCSS fork.