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
- Host: GitHub
- URL: https://github.com/malithmcr/bem-sass-starter
- Owner: malithmcr
- Created: 2019-07-14T11:59:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T18:12:52.000Z (over 3 years ago)
- Last Synced: 2025-02-07T22:33:26.990Z (over 1 year ago)
- Language: JavaScript
- Size: 378 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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
```