Skip to content

Instantly share code, notes, and snippets.

@stefbowerman
Last active August 29, 2015 13:56
Show Gist options
  • Save stefbowerman/8970722 to your computer and use it in GitHub Desktop.
Save stefbowerman/8970722 to your computer and use it in GitHub Desktop.
Candy stripe text shadow. Looks cool if the font color is the same as the background color.
$color1: #FFF;
$color2: #F00; // Red
.candy-stripe {
color: $color1;
text-shadow:
1px 1px 1px $color2,
2px 2px 1px $color1,
3px 3px 1px $color2,
4px 4px 1px $color1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment