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;
}| /** | |
| * | |
| * In this example we create view with inplace and bulk editing. | |
| * Tools and plugins: | |
| * jQuery | |
| * xEditable jquery plugin | |
| * twitter bootstrap | |
| * | |
| */ |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
This document outlines the steps I take to setup my environment on windows using WSL. This requires being on the windows 10 Creative update or greater with an Ubuntu 16 installed as WSL.
| #!/usr/bin/env bash | |
| declare -A params=$6 # Create an associative array | |
| paramsTXT=""; | |
| if [ -n "$6" ]; then | |
| for element in "${!params[@]}" | |
| do | |
| paramsTXT="${paramsTXT} | |
| fastcgi_param ${element} ${params[$element]};" | |
| done |