namespacing-3.less 443 B

12345678910111213141516171819202122232425262728
  1. @map: {
  2. @width: 400px;
  3. @colors: {
  4. toolbar-background: red;
  5. toolbar-foreground: white;
  6. }
  7. };
  8. #ns {
  9. .mixin() {
  10. @height: 200px;
  11. }
  12. }
  13. @breakpoints: {
  14. mobile: 320px;
  15. tablet: 768px;
  16. desktop: 1024px;
  17. };
  18. @media (min-width: @breakpoints[mobile]) {
  19. .toolbar {
  20. width: @map[@width];
  21. height: #ns.mixin[@height];
  22. background: @map[@colors][toolbar-background];
  23. color: @map[@colors][toolbar-foreground];
  24. }
  25. }