Guest User

Untitled

a guest
Dec 11th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /* Namespaces */
  2.  
  3. #fancyNamespace {
  4. .button () {
  5. display: block;
  6. background: mix(@color2, @color1, 50%);
  7. border: @borderWidth solid @black;
  8. }
  9. .round-corner(@radius) {
  10. border-radius: @radius;
  11. -webkit-border-radius: @radius;
  12. -moz-border-radius: @radius;
  13. }
  14. .text-decoration {
  15. text-indent: -9999px;
  16. }
  17. .border () {
  18. border: 1px solid @black;
  19. }
  20. .rectangle(@w: 200px, @h: 200px) {
  21. width: @w;
  22. height: @h;
  23. }
  24. }
Add Comment
Please, Sign In to add comment