_base.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. // Fonts
  6. .lib-font-face(
  7. @family-name: @icons__font-name,
  8. @font-path: @icons__font-path,
  9. @font-weight: normal,
  10. @font-style: normal
  11. );
  12. .lib-font-face(
  13. @family-name: 'MUI-Icons',
  14. @font-path: '@{baseDir}fonts/MUI-Icons/MUI-Icons',
  15. @font-weight: 300,
  16. @font-style: normal
  17. );
  18. .lib-font-face(
  19. @family-name: @font-family-name__base,
  20. @font-path: '@{baseDir}fonts/opensans/light/opensans-300',
  21. @font-weight: 300,
  22. @font-style: normal
  23. );
  24. .lib-font-face(
  25. @family-name: @font-family-name__base,
  26. @font-path: '@{baseDir}fonts/opensans/regular/opensans-400',
  27. @font-weight: 400,
  28. @font-style: normal
  29. );
  30. .lib-font-face(
  31. @family-name: @font-family-name__base,
  32. @font-path: '@{baseDir}fonts/opensans/semibold/opensans-600',
  33. @font-weight: 600,
  34. @font-style: normal
  35. );
  36. .lib-font-face(
  37. @family-name: @font-family-name__base,
  38. @font-path: '@{baseDir}fonts/opensans/bold/opensans-700',
  39. @font-weight: 700,
  40. @font-style: normal
  41. );
  42. // Headings
  43. h1 {
  44. color: @h1color;
  45. font: @h1font;
  46. }
  47. h2 {
  48. color: @h2color;
  49. font: @h2font;
  50. }
  51. h3 {
  52. color: @h3color;
  53. font: @h3font;
  54. }
  55. h4 {
  56. color: @h4color;
  57. font: @h4font;
  58. }
  59. h5 {
  60. color: @h5color;
  61. font: @h5font;
  62. }
  63. h6 {
  64. color: @h6color;
  65. font: @h6font;
  66. }
  67. // Links
  68. a {
  69. display: inline;
  70. }