View gist:06b412eac62501048e4ac53e9d500b26
➜ trellis ./bin/deploy.sh production firstamericanmerchant.com -vvv | |
ansible-playbook 2.4.0.0 | |
config file = /Users/commonmind/Development/Sites/emb-fam/trellis/ansible.cfg | |
configured module search path = [u'/Users/commonmind/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] | |
ansible python module location = /Library/Python/2.7/site-packages/ansible | |
executable location = /usr/local/bin/ansible-playbook | |
python version = 2.7.10 (default, Jul 15 2017, 17:16:57) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] | |
Using /Users/commonmind/Development/Sites/emb-fam/trellis/ansible.cfg as config file | |
Parsed /Users/commonmind/Development/Sites/emb-fam/trellis/hosts/development inventory source with ini plugin | |
Parsed /Users/commonmind/Development/Sites/emb-fam/trellis/hosts/production inventory source with ini plugin |
View .hyper.js
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'stable', |
View gist:8239837
<html> | |
<head> | |
<title>Checkbox</title> | |
<style> | |
input[type=checkbox] { | |
display:none; | |
} | |
input[type=checkbox] + label | |
{ |
View mixins.scss
//Cross browser CSS3 mixins | |
@mixin box-shadow($left, $top, $radius, $color) { | |
box-shadow: $left $top $radius $color; | |
-webkit-box-shadow: $left $top $radius $color; | |
-moz-box-shadow: $left $top $radius $color; | |
} | |
@mixin transition($property, $duration, $easing: linear) { | |
transition: $property $duration $easing; |