Guest User

Untitled

a guest
May 27th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.29 KB | None | 0 0
  1. /** mixins **/
  2. .backgroundColor(@color) {
  3.     background: @color;
  4. }
  5.  
  6. .devContainer(@left, @right) {
  7.     .dev {
  8.         position: absolute;
  9.         left: @left;
  10.         right: @right;
  11.         width: 100px;
  12.         height: 100px;
  13.     }  
  14. }
  15.  
  16.  
  17. /** layout **/
  18. #mydiv {
  19.     .backgroundColor(blue);
  20.     .devContainer(30px, 30px);
  21. }
Add Comment
Please, Sign In to add comment