_typography.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* Typography */
  2. body {
  3. font-size: 1rem;
  4. font-family: $type1-regular;
  5. font-weight: initial;
  6. line-height: normal;
  7. -webkit-font-smoothing: antialiased;
  8. }
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6,
  15. .h1,
  16. .h2,
  17. .h3,
  18. .h4,
  19. .h5,
  20. .h6 {
  21. font-family: $type1-medium;
  22. }
  23. p {
  24. font-size: $default-font-size;
  25. }
  26. h1,
  27. .h1 {
  28. font-size: 2.19rem;
  29. }
  30. h2,
  31. .h2 {
  32. font-size: 1.88rem;
  33. }
  34. h3,
  35. .h3 {
  36. font-size: 1.56rem;
  37. }
  38. h4,
  39. .h4 {
  40. font-size: 1.13rem;
  41. }
  42. h5,
  43. .h5 {
  44. font-size: 1rem;
  45. }
  46. h6,
  47. .h6 {
  48. font-size: .9375rem;
  49. }
  50. p {
  51. font-size: .9375rem;
  52. line-height: 1.5;
  53. }
  54. .display-1 {
  55. font-size: 3.75rem;
  56. @media (max-width: 991px) {
  57. font-size: 3rem;
  58. }
  59. }
  60. .display-2 {
  61. font-size: 3.125rem;
  62. @media (max-width: 991px) {
  63. font-size: 2.5rem;
  64. }
  65. }
  66. .display-3 {
  67. font-size: 2.5rem;
  68. @media (max-width: 991px) {
  69. font-size: 2rem;
  70. }
  71. }
  72. .display-4 {
  73. font-size: 1.875rem;
  74. @media (max-width: 991px) {
  75. font-size: 1.5rem;
  76. }
  77. }
  78. .display-5 {
  79. font-size: 1.25rem;
  80. @media (max-width: 991px) {
  81. font-size: 1rem;
  82. }
  83. }
  84. .blockquote {
  85. padding: 1.25rem;
  86. border: 1px solid $border-color;
  87. }
  88. address {
  89. p {
  90. margin-bottom: 0;
  91. }
  92. }
  93. //blockqoute color variations
  94. @each $color, $value in $theme-colors {
  95. .blockquote-#{$color} {
  96. @include blockquote($value);
  97. }
  98. }
  99. .error-page {
  100. h1 {
  101. font-size: 12rem;
  102. @media (max-width: 991px) {
  103. font-size: 8rem;
  104. }
  105. }
  106. }
  107. .icon-lg {
  108. font-size: 3.438rem;
  109. }
  110. .icon-md {
  111. font-size: 1.875rem;
  112. }
  113. .icon-sm {
  114. font-size: 1rem;
  115. }