git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
//Look for other responsivevoice instances | |
/*if (window.parent != null) { | |
var iframes = window.parent.document.getElementsByTagName('iframe'); | |
for (var i = 0; i < iframes.length; i++) { | |
//iframes[i].style.width = "300px" | |
} | |
}*/ | |
if (typeof responsiveVoice != 'undefined') { | |
console.log('ResponsiveVoice already loaded'); |
Design for a halfopaque card on background
A Pen by Nico Brünjes on CodePen.
Design for a halfopaque card on background
A Pen by Nico Brünjes on CodePen.
@mixin vendor($name, $args...) { | |
$vendors: -webkit-, -ms-, -moz-, -o-; | |
$nextWithVendor: false; | |
$first: true; | |
$cleanValues: null; | |
$cleanName: $name; | |
@if nth( $name, 1 ) == -prefix- { | |
$cleanName: nth( $name, 2 ); | |
} |
# Add a little color to your git cli | |
git config --global color.ui auto | |
# Git will automatically manage line endings for you if you set autocrlf option | |
# on a mac / linux machine you'll want do this | |
git config --global core.autocrlf input | |
# one a windows machine you'll want to do this | |
git config --global core.autocrlf true | |
# Instead of just showing highlighting the entire line that changed |