diff options
-rw-r--r-- | Hacking.md | 29 |
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 + ``` |