Guest User

Untitled

a guest
Jun 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /// Text Shadow
  2. /// @param {Size} $x [2px] - X
  3. /// @param {Size} $y [2px] - Y
  4. /// @param {Size} $blur [2px] - Blur
  5. /// @param {Color} $color [rgba(0,0,0,.4)] - Color
  6.  
  7. @mixin text-shadow($x: 2px, $y: 2px, $blur: 5px, $color: rgba(0,0,0,.4)) {
  8. text-shadow: $x $y $blur $color;
  9. }
Add Comment
Please, Sign In to add comment