_typography.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. body,
  2. button,
  3. input,
  4. select,
  5. textarea {
  6. color: $color__text-main;
  7. font-family: $font__main;
  8. @include font-size(1);
  9. line-height: $font__line-height-body;
  10. }
  11. h1, h2, h3, h4, h5, h6 {
  12. clear: both;
  13. font-family: $font__main;
  14. font-style: italic;
  15. font-weight: normal;
  16. margin-top: 0.2em;
  17. margin-bottom: 0.2em;
  18. }
  19. h1 {
  20. @include font-size(2.125);
  21. }
  22. h2 {
  23. @include font-size(1.825);
  24. }
  25. h3 {
  26. @include font-size(1.625);
  27. }
  28. h4 {
  29. @include font-size(1.125);
  30. margin-top: 0.4em;
  31. margin-bottom: 0.4em;
  32. }
  33. h5 {
  34. @include font-size(1);
  35. margin-top: 0.8em;
  36. margin-bottom: 0.8em;
  37. }
  38. h6 {
  39. @include font-size(.875);
  40. margin-top: 0.8em;
  41. margin-bottom: 0.8em;
  42. }
  43. p {
  44. margin-top: 0;
  45. margin-bottom: 1.6em;
  46. }
  47. dfn, cite, em, i {
  48. font-style: italic;
  49. }
  50. blockquote {
  51. color: $color__link;
  52. @include font-size(1.125);
  53. font-style: italic;
  54. margin: 0;
  55. border-top: 3px solid $color__border-button;
  56. padding-top: .8em;
  57. border-bottom: 1px solid $color__border-button;
  58. margin-bottom: .8em;
  59. padding-bottom: .8em;
  60. &.aligncenter {
  61. text-align: center;
  62. }
  63. p:last-of-type {
  64. margin-bottom: 0;
  65. }
  66. blockquote {
  67. border-top: 0;
  68. border-bottom: 0;
  69. padding-left: .8em;
  70. padding-bottom: 0;
  71. }
  72. cite {
  73. display: block;
  74. text-align: right;
  75. font-style: normal;
  76. @include font-size(1);
  77. }
  78. }
  79. address {
  80. margin: 0 0 1.6em;
  81. }
  82. pre {
  83. background: $color__background-pre;
  84. font-family: $font__pre;
  85. @include font-size(0.825);
  86. line-height: $font__line-height-pre;
  87. margin-bottom: 1.6em;
  88. max-width: 100%;
  89. overflow: auto;
  90. padding: 1.6em;
  91. }
  92. code, kbd, tt, var {
  93. font-family: $font__code;
  94. @include font-size(0.825);
  95. }
  96. abbr, acronym {
  97. border-bottom: 1px dotted $color__border-abbr;
  98. cursor: help;
  99. }
  100. mark, ins {
  101. background: $color__background-ins;
  102. text-decoration: none;
  103. }
  104. big {
  105. font-size: 125%;
  106. }
  107. blockquote, q {
  108. quotes: "" "";
  109. &:before,
  110. &:after {
  111. content: "";
  112. }
  113. }