aboutsummaryrefslogtreecommitdiffstats
path: root/templates/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'templates/README.md')
-rw-r--r--templates/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/README.md b/templates/README.md
new file mode 100644
index 0000000..49335ff
--- /dev/null
+++ b/templates/README.md
@@ -0,0 +1,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
+ ```