_typography.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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-weight: bold;
  14. font-family: $font__main;
  15. text-transform: uppercase;
  16. }
  17. h1 {
  18. @include font-size(2);
  19. }
  20. h2 {
  21. @include font-size(1.875);
  22. }
  23. h3 {
  24. @include font-size(1.625);
  25. }
  26. h4 {
  27. @include font-size(1.125);
  28. }
  29. h5 {
  30. @include font-size(1);
  31. }
  32. h6 {
  33. @include font-size(.875);
  34. }
  35. p {
  36. margin: .8em 0;
  37. }
  38. dfn, cite, em, i {
  39. font-style: italic;
  40. }
  41. blockquote {
  42. @include font-size(1.625);
  43. font-weight: bold;
  44. margin: 0 1.6em;
  45. }
  46. address {
  47. margin: 0 0 1.6em;
  48. }
  49. pre {
  50. background: $color__background-pre;
  51. font-family: $font__pre;
  52. @include font-size(0.9375);
  53. line-height: $font__line-height-pre;
  54. margin-bottom: 1.6em;
  55. max-width: 100%;
  56. overflow: auto;
  57. padding: 1.6em;
  58. }
  59. code, kbd, tt, var {
  60. font-family: $font__code;
  61. @include font-size(0.9375);
  62. }
  63. abbr, acronym {
  64. border-bottom: 1px dotted $color__border-abbr;
  65. cursor: help;
  66. }
  67. mark, ins {
  68. background: $color__background-ins;
  69. text-decoration: none;
  70. }
  71. big {
  72. font-size: 125%;
  73. }
  74. blockquote, q {
  75. quotes: "" "";
  76. &:before,
  77. &:after {
  78. content: "";
  79. }
  80. }