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.

_markdown.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. h1, h2, h3, h4, h5 {
  10. font-weight: 400;
  11. line-height: 1.25;
  12. }
  13. b, optgroup, strong {
  14. font-weight: 700;
  15. }
  16. a {
  17. text-decoration: none;
  18. &:hover {
  19. text-decoration: underline;
  20. }
  21. }
  22. code {
  23. font-family: 'Oxygen Mono', monospace;
  24. padding: 0 $padding-4;
  25. background: $gray-100;
  26. border-radius: $block-border-radius;
  27. }
  28. pre {
  29. padding: $padding-16;
  30. background: $gray-100;
  31. border-radius: $block-border-radius;
  32. font-size: $font-size-14;
  33. overflow-x: auto;
  34. }
  35. blockquote {
  36. border-left: $padding-1*2 solid $gray-300;
  37. margin: 0;
  38. padding: $padding-1 $padding-16;
  39. :first-child { margin-top: 0; }
  40. :last-child { margin-bottom: 0; }
  41. }
  42. table {
  43. border-spacing: 0;
  44. border-collapse: collapse;
  45. tr th, tr td {
  46. padding: $padding-8 $padding-16;
  47. line-height: 1;
  48. border: 1px solid $gray-200;
  49. }
  50. tr:nth-child(2n) {
  51. background: $gray-100;
  52. }
  53. }
  54. }