An open API service indexing awesome lists of open source software.

https://github.com/malithmcr/bem-sass-starter

Gulp/Wordpress ready BEM SCSS starter repo
https://github.com/malithmcr/bem-sass-starter

Last synced: 5 months ago
JSON representation

Gulp/Wordpress ready BEM SCSS starter repo

Awesome Lists containing this project

README

          

### How to use

### Directory Structure

```bash
├── README.md
├── demo
│   └── index.html
└── src
├── gulp
│   ├── Gulpfile.js
│   ├── package-lock.json
│   └── package.json
├── sass
│   ├── \ style.scss
│   ├── core
│   │   ├── _all.scss
│   │   ├── _colors.scss
│   │   ├── _mixins.scss
│   │   ├── _typography.scss
│   │   ├── _utilities.scss
│   │   └── _variables.scss
│   ├── modules
│   │   ├── _all.scss
│   │   ├── _btn.scss
│   │   ├── _footer.scss
│   │   ├── _header.scss
│   │   └── _widgets.scss
│   └── pages
│   ├── _all.scss
│   ├── _home.scss
│   ├── _page.scss
│   └── _post.scss
└── style.css

```