_settings.less 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. // ==============================================
  6. // ClearLess default settings
  7. // ----------------------------------------------
  8. // Override on a per-project basis as required.
  9. // ==============================================
  10. // General --------------------------------
  11. @using-ieclasses: true; // whether or not the markup has html5-boilerplate style IE classes in it or not
  12. @using-modernizr: false; // whether or not modernizer feature-detection classes are being used
  13. @disable-filters: true; // whether or not to disable MS-specific 'filter' properties (can make IE slow!)
  14. // Typography --------------------------------
  15. @base-font-size: 16; // base pixel font size. Used as a default for px -> (r)em conversions
  16. // Sprites --------------------------------
  17. @sprite-image: '/example.png';
  18. @sprite-grid: 50px;
  19. // Grid --------------------------------
  20. @total-columns: 12;
  21. @column-width: 60px;
  22. @gutter-width: 20px;