typography.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // =============== Common ===============
  2. .typography-paragraph() {
  3. margin-bottom: 1em;
  4. }
  5. .typography-title(@fontSize; @fontWeight; @lineHeight; @headingColor; @headingMarginBottom;) {
  6. margin-bottom: @headingMarginBottom;
  7. color: @headingColor;
  8. font-weight: @fontWeight;
  9. font-size: @fontSize;
  10. line-height: @lineHeight;
  11. }
  12. .typography-title-1() {
  13. .typography-title(
  14. @heading-1-size,
  15. @typography-title-font-weight,
  16. 1.23,
  17. @heading-color,
  18. @typography-title-margin-bottom
  19. );
  20. }
  21. .typography-title-2() {
  22. .typography-title(
  23. @heading-2-size,
  24. @typography-title-font-weight,
  25. 1.35,
  26. @heading-color,
  27. @typography-title-margin-bottom
  28. );
  29. }
  30. .typography-title-3() {
  31. .typography-title(
  32. @heading-3-size,
  33. @typography-title-font-weight,
  34. 1.35,
  35. @heading-color,
  36. @typography-title-margin-bottom
  37. );
  38. }
  39. .typography-title-4() {
  40. .typography-title(
  41. @heading-4-size,
  42. @typography-title-font-weight,
  43. 1.4,
  44. @heading-color,
  45. @typography-title-margin-bottom
  46. );
  47. }
  48. .typography-title-5() {
  49. .typography-title(
  50. @heading-5-size,
  51. @typography-title-font-weight,
  52. 1.5,
  53. @heading-color,
  54. @typography-title-margin-bottom
  55. );
  56. }