https://github.com/swanie21/sass-discovery
Instructions on how to use Sass and explanation of features
https://github.com/swanie21/sass-discovery
css-preprocessor html5 sass
Last synced: 4 months ago
JSON representation
Instructions on how to use Sass and explanation of features
- Host: GitHub
- URL: https://github.com/swanie21/sass-discovery
- Owner: swanie21
- Created: 2016-09-26T04:46:26.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2017-03-07T02:08:33.000Z (over 8 years ago)
- Last Synced: 2025-01-08T16:06:36.268Z (6 months ago)
- Topics: css-preprocessor, html5, sass
- Language: HTML
- Homepage: http://kirstenswanson.io/sass-discovery/
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discovering the Capabilities of Sass
This [repo](https://swanie21.github.io/sass-discovery/) covers these Sass topics:
* Installing Sass locally and implementing it
* Sass Features and examples
* SCSS FormattingWhen compiled Sass creates a `.sass-cache` folder containing all the templates and partials to speed up the creation of CSS.
If you want to ignore this folder in your repo you need to create a `.gitignore` file and state `*.sass-cache` to ignore this folder in the root directory.
If you have already pushed the `.sass-cache` folder to your repo you can remove it by typing `git rm -r --cached .sass-cache/` in the terminal and you will immediately see those files deleted. If you check your `git status` you won't see those deleted files, but you'll still need to `add`, `commit` and `push` these changes to your repo.