Skip to content

Instantly share code, notes, and snippets.

@jbenner-radham
Created February 14, 2019 02:08
Show Gist options
  • Select an option

  • Save jbenner-radham/a312f105a40732fb960338880910e738 to your computer and use it in GitHub Desktop.

Select an option

Save jbenner-radham/a312f105a40732fb960338880910e738 to your computer and use it in GitHub Desktop.
Playing with long shadows in SCSS.
@function long-shadow($color, $recursions: 200) {
$shadows: 0 0 $color;
@for $i from 1 through $recursions {
$shadows: $shadows, #{$i}px #{$i}px #{$color};
}
@return $shadows;
}
body {
text-shadow: long-shadow(#ccc, 5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment