Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axsaucedo/hack100
The website for the Hacka100 NACUE hackathon
https://github.com/axsaucedo/hack100
Last synced: about 7 hours ago
JSON representation
The website for the Hacka100 NACUE hackathon
- Host: GitHub
- URL: https://github.com/axsaucedo/hack100
- Owner: axsaucedo
- Created: 2015-01-06T00:45:09.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-26T01:07:54.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T03:22:12.822Z (7 months ago)
- Language: CSS
- Size: 31.9 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CSS and SASS
============We will use `SASS/SCSS` for this. It'll make everything easier.
To *install* `SASS` you need `rubygems` and then, you simply do:
$ gem install sass
Using SASS
----------I'd recommend to keep a lot of `sass` and `scss` files in the `css/` folder and include all of them using `main.sass` and the `@import` syntax. Example:
// to import the file "article.sass" or "article.sass" we use
@import "article"To *compile* the `SASS` files into a `CSS` every time something is changed, we use:
(from the css/ folder)
$ sass --watch main.sass:styles.cssAnd it'll watch changes in every `SASS` and `SCSS` files and update the CSS output. We only include `styles.css` in our HTML. *`styles.css` should not be commited into the repository.*