aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2018-04-07 12:33:12 -0500
committerJesús <heckyel@hyperbola.info>2018-04-07 12:33:12 -0500
commit2e44b4295e1cb006f0f43c9300b6f2c4f78ed251 (patch)
tree5ad03ecfb3d051be9dd7cee934c64ad7df921662
parenta8a7d0d21d27c1de5ab1b850bf35e90e1d1f260d (diff)
downloadlidra-theme-2e44b4295e1cb006f0f43c9300b6f2c4f78ed251.tar.lz
lidra-theme-2e44b4295e1cb006f0f43c9300b6f2c4f78ed251.tar.xz
lidra-theme-2e44b4295e1cb006f0f43c9300b6f2c4f78ed251.zip
Add Hacking.md
-rw-r--r--Hacking.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/Hacking.md b/Hacking.md
new file mode 100644
index 0000000..6c432f1
--- /dev/null
+++ b/Hacking.md
@@ -0,0 +1,29 @@
+## Hacking
+
+## SASS to CSS and compress CSS
+
+1. Requeriments:
+
+ ```
+ gem install sass
+ ```
+
+ ```
+ pip install cssmin
+ ```
+
+2. Generate CSS from SASS:
+
+ ```
+ cd Lidra-theme/css/
+ ```
+
+ ```
+ sass -t compressed estilos.sass:estilos.min.css
+ ```
+
+3. Compress CSS of boostrap:
+
+ ```
+ cssmin --wrap 1000 < bootstrap.css > bootstrap.min.css
+ ```