You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

139 lines
2.1 KiB

  1. @import 'mixins';
  2. html {
  3. --font-size-copy: 22px;
  4. --font-size-small: 18px;
  5. --font-size-xs: 14px;
  6. --font-size-h1: 64px;
  7. --font-size-h2: 42px;
  8. --font-size-h3: 36px;
  9. --font-size-h4: 28px;
  10. --font-source-sans: 'Source Sans Pro', sans-serif;
  11. --font-korb: 'Korb', sans-serif;
  12. font-family: var(--font-source-sans);
  13. font-size: var(--font-size-copy);
  14. line-height: 1.5;
  15. color: var(--theme-color-primary);
  16. @media(max-width: 1339px) {
  17. --font-size-copy: 20px;
  18. --font-size-small: 17px;
  19. --font-size-h1: 54px;
  20. --font-size-h2: 36px;
  21. --font-size-h3: 32px;
  22. --font-size-h4: 24px;
  23. }
  24. @media(max-width: 999px) {
  25. --font-size-copy: 18px;
  26. --font-size-small: 16px;
  27. --font-size-h1: 46px;
  28. --font-size-h2: 32px;
  29. --font-size-h3: 28px;
  30. --font-size-h4: 22px;
  31. }
  32. @media(max-width: 767px) {
  33. --font-size-xs: 12px;
  34. --font-size-h1: 36px;
  35. --font-size-h2: 28px;
  36. --font-size-h3: 24px;
  37. --font-size-h4: 20px;
  38. }
  39. }
  40. body {
  41. margin: 0;
  42. }
  43. .sidebar {
  44. @media (min-width: 1000px) {
  45. --font-size-h1: 54px;
  46. --font-size-h2: 36px;
  47. --font-size-h3: 32px;
  48. --font-size-h4: 24px;
  49. }
  50. }
  51. h1, .like-h1 {
  52. @include h1;
  53. }
  54. h2, .like-h2 {
  55. @include h2;
  56. }
  57. h3, .like-h3 {
  58. @include h3;
  59. }
  60. h4, .like-h4 {
  61. @include h4;
  62. }
  63. h5, .like-h5 {
  64. @include h5;
  65. }
  66. h6, .like-h6 {
  67. @include h6;
  68. }
  69. h1 + h2 {
  70. margin-top: 0;
  71. }
  72. a {
  73. color: var(--theme-color-link);
  74. transition: 0.2s ease;
  75. &:hover {
  76. color: var(--theme-color-link-hover);
  77. }
  78. }
  79. p, .text, ul.nobreaks {
  80. margin: 0 0 0.8em;
  81. }
  82. .kicker {
  83. @include kicker;
  84. }
  85. .initial {
  86. font-weight: 600;
  87. margin: 12px 0 1em;
  88. min-height: 3.8em;
  89. &.strong {
  90. font-weight: 600;
  91. }
  92. &::first-letter {
  93. float: left;
  94. font-size: 3.4em;
  95. line-height: 1;
  96. margin: -0.04em 0.08em -0.2em -0.05em;
  97. font-weight: 400;
  98. }
  99. &.text:after {
  100. content: "";
  101. display: table;
  102. clear: both;
  103. }
  104. @media(max-width: 767px) {
  105. margin: 24px 0;
  106. &::first-letter {
  107. margin-top: -0.05em;
  108. }
  109. }
  110. }
  111. [data-browser="firefox"] {
  112. .initial::first-letter {
  113. margin-top: 0.113em;
  114. }
  115. }