Skip to content

Instantly share code, notes, and snippets.

@terkel
Created November 11, 2015 07:48
Show Gist options
  • Save terkel/a00c5b3108d1586cb4b0 to your computer and use it in GitHub Desktop.
Save terkel/a00c5b3108d1586cb4b0 to your computer and use it in GitHub Desktop.
@function random-image ($width: 400, $height: null) {
$height: if($height, $height, $width);
$size: $width + "/" + $height;
$src: "https://unsplash.it/" + $size + "/?random=" + random();
@return url($src);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment