vars.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* шрифты */
  2. @font-fallback-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Ubuntu, Arial, sans-serif;
  3. @font-main: 'Golos Text', @font-fallback-main;
  4. @font-extra: 'Graphik LCG', @font-fallback-main;
  5. @font-serifpro: 'Source Serif Pro';
  6. /* секции */
  7. @section-extra-max-width: 1352px;
  8. @section-max-width: 1306px;
  9. @section-padding: 20px;
  10. @section-padding-m: 16px;
  11. /* разрешения экрана и медиа-запросы */
  12. @screen-xxs: 400px;
  13. @screen-xs: 500px;
  14. @screen-sm: 768px;
  15. @screen-md: 1000px;
  16. @screen-lg: 1200px;
  17. @screen-xlg: 1300px;
  18. @media-xxs: ~"all and (max-width: @{screen-xxs})";
  19. @media-xs: ~"all and (max-width: @{screen-xs})";
  20. @media-sm: ~"all and (max-width: @{screen-sm})";
  21. @media-md: ~"all and (max-width: @{screen-md})";
  22. @media-lg: ~"all and (max-width: @{screen-lg})";
  23. @media-xlg: ~"all and (max-width: @{screen-xlg})";
  24. /* анимация */
  25. @transition-fast: .15s cubic-bezier(0.645, 0.045, 0.355, 1);
  26. @transition-main: .3s cubic-bezier(0.645, 0.045, 0.355, 1);
  27. @transition-slow: .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  28. @transition-slow-max: .6s cubic-bezier(0.645, 0.045, 0.355, 1);
  29. /* цвета */
  30. @color-black: #000;
  31. @color-black-light: #3E3E3E;
  32. @color-black-lighten: #4E4E4E;
  33. @color-white: #fff;
  34. @color-green: #3B9B00;
  35. @color-orange: #FF7F00;
  36. @color-blue: #23BAEA;
  37. @color-dark-blue: #5A748B;
  38. @color-blue-darken: #3B5573;
  39. @color-dark-red: #AD0000;
  40. @color-dark-orange: #F6911F;
  41. @color-page: #F5F5F5;
  42. @color-grey: #AEAEAE;
  43. @color-grey-dark: #A8A8A8;
  44. @color-grey-darken: #878787;
  45. @color-footer: #EAEAEA;
  46. /* Пути */
  47. @path-img: '../img';
  48. @path-font: '../fonts';