Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...
| // Mixin | |
| @mixin keyframes($name) { | |
| @-moz-keyframes #{$name} { @content; } | |
| @-webkit-keyframes #{$name} { @content; } | |
| @-o-keyframes #{$name} { @content; } | |
| @-ms-keyframes #{$name} { @content; } | |
| @-khtml-keyframes #{$name} { @content; } | |
| @keyframes #{$name} { @content; } | |
| } |
Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...
| /* | |
| SCSS Color Methods for Accessibility | |
| ================================================================================ | |
| Adjust given colors to ensure that those color combination provide sufficient | |
| contrast. | |
| @version 0.1 | |
| @link http://eye48.com/go/scsscontrast |