您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_typography.scss 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
  2. body,
  3. div,
  4. dl,
  5. dt,
  6. dd,
  7. ul,
  8. ol,
  9. li,
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. h6,
  16. pre,
  17. form,
  18. fieldset,
  19. button,
  20. input,
  21. textarea,
  22. p,
  23. blockquote,
  24. th,
  25. td {
  26. font-family: $font-family;
  27. }
  28. p {
  29. vertical-align: middle;
  30. display: inline-block;
  31. word-break: break-word;
  32. font-size: pxToRem(16px);
  33. line-height: 1.5;
  34. @include media-below($bp-md) {
  35. font-size: pxToRemMd(16px);
  36. }
  37. }
  38. a {
  39. font-size: inherit;
  40. line-height: inherit;
  41. color: inherit;
  42. }
  43. strong {
  44. font-weight: bold;
  45. }
  46. h1,
  47. h2,
  48. h3,
  49. h4,
  50. h5,
  51. h6 {
  52. font-weight: 600 !important;
  53. }
  54. .text-end {
  55. width: 100%;
  56. text-align: end;
  57. }
  58. h5 {
  59. // imported from figma
  60. //styleName: Heading;
  61. font-family: Source Sans Pro !important;
  62. font-size: 24px !important;
  63. font-weight: 600 !important;
  64. line-height: 32px !important;
  65. letter-spacing: 0.02em !important;
  66. text-align: center !important;
  67. }
  68. .text-black{
  69. color: $mainBlack;
  70. }
  71. .text-blue{
  72. color: $mainBlue;
  73. }
  74. .text-grey9d{
  75. color: $grey-9D;
  76. }
  77. .text-uppercase{
  78. text-transform: uppercase !important;
  79. }
  80. .page-heading{
  81. font-style: normal;
  82. font-weight: 600;
  83. font-size: 36px;
  84. line-height: 32px;
  85. /* identical to box height, or 89% */
  86. letter-spacing: 0.02em;
  87. /* Main Black */
  88. color: #272727;@include media-below($bp-xl) {
  89. font-size: 18px !important;
  90. }
  91. }