Guest User

Untitled

a guest
Jun 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. /// Border Radius Separate
  2. /// @param {Size} $topLeftRadius [5px] - Top Left
  3. /// @param {Size} $topRightRadius [5px] - Top Right
  4. /// @param {Size} $bottomLeftRadius [5px] - Bottom Left
  5. /// @param {Size} $bottomRightRadius [5px] - Bottom Right
  6.  
  7. @mixin border-radius-separate($topLeftRadius: 5px, $topRightRadius: 5px, $bottomLeftRadius: 5px, $bottomRightRadius: 5px) {
  8. -webkit-border-top-left-radius: $topLeftRadius;
  9. -webkit-border-top-right-radius: $topRightRadius;
  10. -webkit-border-bottom-right-radius: $bottomRightRadius;
  11. -webkit-border-bottom-left-radius: $bottomLeftRadius;
  12.  
  13. -moz-border-radius-topleft: $topLeftRadius;
  14. -moz-border-radius-topright: $topRightRadius;
  15. -moz-border-radius-bottomright: $bottomRightRadius;
  16. -moz-border-radius-bottomleft: $bottomLeftRadius;
  17.  
  18. border-top-left-radius: $topLeftRadius;
  19. border-top-right-radius: $topRightRadius;
  20. border-bottom-right-radius: $bottomRightRadius;
  21. border-bottom-left-radius: $bottomLeftRadius;
  22. }
Add Comment
Please, Sign In to add comment