_markdown.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @import 'variables';
  2. $block-border-radius: 0.15rem;
  3. .markdown {
  4. line-height: 1.7;
  5. > :first-child {
  6. margin-top: 0;
  7. line-height: 1em;
  8. }
  9. h2 {
  10. margin-top: 48px;
  11. }
  12. h1, h2, h3, h4, h5 {
  13. font-weight: 400;
  14. line-height: 1.25;
  15. &[id]:target:before {
  16. display: block;
  17. content: " ";
  18. margin-top: -75px; // Set the Appropriate Height
  19. height: 75px; // Set the Appropriate Height
  20. visibility: hidden;
  21. }
  22. &[id]:target {
  23. text-decoration: underline;
  24. }
  25. }
  26. b, optgroup, strong {
  27. font-weight: 700;
  28. }
  29. a {
  30. text-decoration: none;
  31. &:hover {
  32. text-decoration: underline;
  33. }
  34. }
  35. code {
  36. font-family: 'Oxygen Mono', monospace;
  37. }
  38. p code {
  39. padding: 0 $padding-4;
  40. background: $gray-100;
  41. border-radius: $block-border-radius;
  42. }
  43. pre {
  44. padding: $padding-16;
  45. background: $gray-100;
  46. border-radius: $block-border-radius;
  47. font-size: $font-size-14;
  48. overflow-x: auto;
  49. }
  50. blockquote {
  51. border-left: $padding-1*2 solid $gray-300;
  52. margin: 0;
  53. padding: $padding-1 $padding-16;
  54. :first-child { margin-top: 0; }
  55. :last-child { margin-bottom: 0; }
  56. }
  57. table tr td {
  58. padding: $padding-8;
  59. }
  60. }