Advertisement
zorro76

mixin

Apr 18th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. @mixin button {
  2.     border-radius: 4px;
  3.     border: 4px solid black;
  4. }
  5.  
  6. .search-button {
  7.     @include button;
  8.     background-color: blue;
  9. }
  10.  
  11. .cancel-button {
  12.     @include button;
  13.     background-color: red;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement