I hereby claim:
- I am sbone on github.
- I am sbone (https://keybase.io/sbone) on keybase.
- I have a public key whose fingerprint is 745C 35CE 17D8 1DDA F77D 9B46 64E6 86AC ABE9 229C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #foundation-breakpoint-indicator:before { | |
| content: 'NULL'; | |
| display: block; | |
| position: fixed; | |
| top: 0; | |
| left: 50%; | |
| margin-left: -50px; | |
| width: 100px; | |
| background-color: blue; | |
| text-align: center; |
| article, aside, details, figcaption, figure, footer, header, hgroup, nav, section | |
| display: block | |
| audio, canvas, video | |
| display: inline-block | |
| *display: inline | |
| *zoom: 1 | |
| [hidden] | |
| display: none |
| !!! 5 | |
| /[if lt IE 7] | |
| %html{:class => "no-js lt-ie9 lt-ie8 lt-ie7", :lang => "en"} | |
| /[if IE 7] | |
| %html{:class => "no-js lt-ie9 lt-ie8", :lang => "en"} | |
| /[if IE 8] | |
| %html{:class => "no-js lt-ie9", :lang => "en"} |
| @mixin rounded-button($radius) { | |
| -webkit-border-radius: $radius; | |
| -moz-border-radius: $radius; | |
| border-radius: $radius; | |
| -moz-background-clip: padding; | |
| -webkit-background-clip: padding-box; | |
| background-clip: padding-box; | |
| } | |
| @mixin rounded-left-top-bottom($radius) { |
| # RVM | |
| export PATH="./bin:$PATH" | |
| [[ -s "/Users/Steven/.rvm/scripts/rvm" ]] && source "/Users/Steven/.rvm/scripts/rvm" | |
| # Git command and branch name tab-completion | |
| source ~/git-completion.bash | |
| # Check if directory is a Git repo | |
| # Customized from http://vvv.tobiassjosten.net/git/add-current-git-branch-to-your-bash-prompt | |
| git_prompt () |