Skip to content

Instantly share code, notes, and snippets.

View LuanComputacao's full-sized avatar
🏠
Working from home

LuanComputacao LuanComputacao

🏠
Working from home
View GitHub Profile
@LuanComputacao
LuanComputacao / generate_responsive.css
Last active January 27, 2022 15:10
Generate responsive CSS property from a list of SCSS key-values
@media (min-width: 1400px) {
.button-accordion {
height: 82%; } }
@media (min-width: 768px) {
.button-accordion {
height: 74%; } }
@media (min-width: 1400px) {
.button-accordion--right {
@LuanComputacao
LuanComputacao / Atom python
Last active March 7, 2017 14:05
Configurations to code in django framework
# To work with python
pip install --upgrade autopep8
pip install flake8
pip install flake8-docstrings
pip install iresolve
# To work with python and django
apm install python-tools