Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axsaucedo/fresherhack
The most epic CS Fresher madness in the UK
https://github.com/axsaucedo/fresherhack
Last synced: about 9 hours ago
JSON representation
The most epic CS Fresher madness in the UK
- Host: GitHub
- URL: https://github.com/axsaucedo/fresherhack
- Owner: axsaucedo
- Created: 2014-02-21T14:11:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-02-26T19:20:25.000Z (over 10 years ago)
- Last Synced: 2024-04-15T10:11:10.042Z (7 months ago)
- Language: CSS
- Size: 50.3 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
freshershack
============The most epic CS Fresher madness in the UK
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.*