Advertisement
Guest User

Untitled

a guest
May 5th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. @mixin text-shadow-outline($width, $color, $blur:0px){
  2.   text-shadow:
  3.     -#{$width} -#{$width} #{$blur} #{$color},
  4.     #{$width} -#{$width} #{$blur} #{$color},
  5.     -#{$width} #{$width} #{$blur} #{$color},
  6.     #{$width} #{$width} #{$blur} #{$color};
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement