Guest User

Untitled

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. @mixin colorize {
  2. $color: blue;
  3. $bg-color: green;
  4. color: $color;
  5. background-color: $bg-color;
  6. }
  7.  
  8. p {
  9. @include colorize;
  10. margin-bottom: 20px;
  11. }
Add Comment
Please, Sign In to add comment