Handy Git Commands
git config --global push.default current
same as running
// Responsive Sprites | |
// example - @include responsive-sprite(346px, 2192px, 173px, 274px, 0px, 0px); | |
@mixin responsive-sprite($sprite-width, $sprite-height, $img-width, $img-height, $img-x, $img-y) { | |
background-size: percentage($sprite-width/$img-width) percentage($sprite-height/$img-height); | |
background-position: percentage($img-x/($sprite-width - $img-width)) percentage($img-y/($sprite-height - $img-height)); | |
} |
linters: | |
SelectorDepth: | |
enabled: true | |
max_depth: 5 | |
NestingDepth: | |
enabled: true | |
max_depth: 5 | |
Indentation: |
Bajando los cambios - Pulling down the changes | |
Acabo de empujar mi código - I just pushed my code |
// SHADOWS | |
$text-shadow-none: none; | |
$text-shadow-xs: 1px 1px 1px rgba(0, 0, 0, .16); | |
$text-shadow-sm: 2px 2px 2px rgba(0, 0, 0, .16); | |
$text-shadow-md: 4px 4px 4px rgba(0, 0, 0, .16); | |
$text-shadow-lg: 8px 8px 8px rgba(0, 0, 0, .16); | |
$box-shadow-none: none; | |
$box-shadow: 0 0 5px 2px rgba(0, 0, 0, .35); | |
$box-shadow-top: 0 -4px 2px -2px rgba(0, 0, 0, .4); | |
$box-shadow-bottom: 0 4px 2px -2px rgba(0, 0, 0, .4); |