diff options
author | Jesús <heckyel@hyperbola.info> | 2018-04-07 12:35:34 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-04-07 12:35:34 -0500 |
commit | 67d92eb6e415868d1c25e185166ffc0cfc77f310 (patch) | |
tree | 6c705e3c8645c0f57c4ecfa3b2da85a3dfe817af /hacking.md | |
parent | 2e44b4295e1cb006f0f43c9300b6f2c4f78ed251 (diff) | |
download | lidra-theme-67d92eb6e415868d1c25e185166ffc0cfc77f310.tar.lz lidra-theme-67d92eb6e415868d1c25e185166ffc0cfc77f310.tar.xz lidra-theme-67d92eb6e415868d1c25e185166ffc0cfc77f310.zip |
renamed hacking.md
Diffstat (limited to 'hacking.md')
-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 + ``` |