aboutsummaryrefslogtreecommitdiffstats
path: root/templates/README.md
blob: 49335ffc0c86fd170ad0b5c61f18c7b6fee06830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## Hacking

## SASS to CSS

1. Requeriments:

    ```
    gem install sass
    ```

2. Generate CSS from SASS:

    ```
    sass -t compressed --sourcemap=none sass/estilos.sass:css/estilos.min.css
    ```

3. Show CSS to SASS live

    ```
    sass --watch -t compressed --sourcemap=none sass/estilos.sass:css/estilos.min.css
    ```