Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_typography.scss 514B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. body,
  2. div,
  3. dl,
  4. dt,
  5. dd,
  6. ul,
  7. ol,
  8. li,
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6,
  15. pre,
  16. form,
  17. fieldset,
  18. button,
  19. input,
  20. textarea,
  21. p,
  22. blockquote,
  23. th,
  24. td {
  25. font-family: $font-family;
  26. }
  27. p {
  28. vertical-align: middle;
  29. display: inline-block;
  30. word-break: break-word;
  31. font-size: pxToRem(16px);
  32. line-height: 1.5;
  33. @include media-below($bp-md) {
  34. font-size: pxToRemMd(16px);
  35. }
  36. }
  37. a {
  38. font-size: inherit;
  39. line-height: inherit;
  40. color: inherit;
  41. }
  42. strong {
  43. font-weight: bold;
  44. }
  45. h1,
  46. h2,
  47. h3,
  48. h4,
  49. h5,
  50. h6 {
  51. font-weight: 500;
  52. }