Created
February 14, 2019 02:08
-
-
Save jbenner-radham/a312f105a40732fb960338880910e738 to your computer and use it in GitHub Desktop.
Playing with long shadows in SCSS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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