_typography.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. html {
  2. @include fluid-type($size-xs, $size-xl, $min-responsive-font-size, $html-font-size);
  3. }
  4. // Header Overrides
  5. h1, h2, h3, h4, h5, h6 {
  6. margin-top: 2rem;
  7. font-family: $title-font-family;
  8. color: darken($body-font-color, 10%);
  9. }
  10. h1, .h1 {
  11. font-size: 3rem;
  12. }
  13. h2, .h2 {
  14. font-size: 1.8rem;
  15. }
  16. h6, .h6 {
  17. font-weight: 400;
  18. }
  19. .title-center {
  20. h1, h2 {
  21. text-align: center;
  22. }
  23. }
  24. .title-h1h2 {
  25. h1 {
  26. font-weight: 100;
  27. margin-bottom: 0;
  28. line-height: 1.1;
  29. strong, bold {
  30. font-weight: 400;
  31. }
  32. }
  33. h1 + h2 {
  34. line-height: 1.1;
  35. margin-top: 0;
  36. }
  37. }
  38. // Typography Hints
  39. .title-h1h2, .title-center {
  40. h1 + h2 {
  41. margin-bottom: 50px;
  42. font-weight: 700;
  43. }
  44. }
  45. a:focus {
  46. outline: none !important;
  47. box-shadow: none !important;
  48. }
  49. img {
  50. max-width: 100%;
  51. }
  52. // Tables
  53. .table > table {
  54. border-spacing: 0;
  55. border-collapse: collapse;
  56. width: 100%;
  57. }
  58. // Codeblocks
  59. pre code, pre.xdebug-var-dump{
  60. background: #fafafa;
  61. display: block;
  62. padding: 1rem !important;
  63. line-height: 1.5;
  64. color: inherit;
  65. border-radius: 2px;
  66. overflow-x: auto;
  67. }
  68. pre[class*="language-"] {
  69. code {
  70. border-radius: inherit;
  71. padding: 0 !important;
  72. overflow-x: initial;
  73. }
  74. }
  75. pre {
  76. code:not(.hljs):not([class*="language-"]) {
  77. background: #f8f8f8;
  78. }
  79. }
  80. // Icon Tweaks
  81. i.fa {
  82. &.fa-heart, &.fa-heart-o {
  83. &.pulse {
  84. color: #920
  85. }
  86. }
  87. }
  88. // Font Weights
  89. b,
  90. strong {
  91. font-weight: 700;
  92. }
  93. .heavy {
  94. font-weight: 700;
  95. }
  96. .light {
  97. font-weight: 200;
  98. }
  99. // Colors
  100. .text-light {
  101. color: rgba($light-color, 0.8);
  102. h1, h2, h3, h4, h5, h6 {
  103. color: rgba($light-color, 0.9);
  104. }
  105. }
  106. // Error configuration
  107. #error {
  108. text-align: center;
  109. position: relative;
  110. margin-top: 5rem;
  111. .icon {
  112. font-size: 50px;
  113. }
  114. }
  115. // Messages
  116. #messages {
  117. margin-bottom: 1rem;
  118. .icon {
  119. font-size: 1rem;
  120. }
  121. }
  122. // Lists
  123. ul,
  124. ol {
  125. margin-left: $unit-8;
  126. ul,
  127. ol {
  128. margin-left: $unit-8;
  129. }
  130. }
  131. ul {
  132. list-style: disc outside;
  133. }
  134. ol {
  135. list-style: decimal outside;
  136. }
  137. // Notices
  138. .notices {
  139. margin: 1.5rem 0;
  140. p {
  141. margin: 1rem 0;
  142. }
  143. }