When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| #!/usr/bin/env bash | |
| # pip3 install --target ./package Pillow | |
| cd package | |
| zip -r9 ${OLDPWD}/archive.zip . | |
| cd $OLDPWD | |
| zip -g archive.zip main.py chromedriver | |
| echo "UPLOADING archive.zip to AWS" | |
| aws lambda update-function-code --function-name pythontest --zip-file fileb://archive.zip |