Skip to content

Instantly share code, notes, and snippets.

View renekoch's full-sized avatar

Rene Koch renekoch

  • First Edition ApS
  • Denmark
View GitHub Profile
@renekoch
renekoch / _gradient.scss
Last active December 16, 2015 01:19
Sass file to set cross browser background gradient
@mixin gradient($color1, $color2, $dir : "h", $height: 100){
$webkit: right top;
$others: left;
$repeat: repeat-y;
@if ($dir == "horz") or ($dir == "h") or ($dir == "horizontal") {
$webkit: left bottom;
$others: top;
$repeat: repeat-x;