Guest User

Untitled

a guest
Jan 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. @mixin linked_image($image,$width,$height,$xoffset,$yoffset) {
  2. background: url($image) no-repeat $xoffset $yoffset;
  3. display: block;
  4. width: $width;
  5. height: $height;
  6. text-indent: -9999px;
  7. overflow: hidden;
  8. }
  9. @mixin italic_stack {
  10. font-style: italic;
  11. font-family: $serif;
  12. }
  13. @mixin clean_ul {
  14. list-style: none;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. @mixin border_radius($radius) {
  19. -webkit-border-radius: $radius;
  20. -moz-border-radius: $radius;
  21. border-radius: $radius;
  22. }
  23. @mixin box_shadow($style, $radius, $color) {
  24. -moz-box-shadow:$style 0 0 $radius $color;
  25. -webkit-box-shadow:$style 0 0 $radius $color;
  26. box-shadow:$style 0 0 $radius $color;
  27. }
  28. @mixin gotham_stack($fontsize,$color,$weight) {
  29. font-family: $gotham;
  30. font-size: $fontsize;
  31. color: $color;
  32. text-transform: uppercase;
  33. font-weight: $weight;
  34. }
Add Comment
Please, Sign In to add comment