My public website https://www.chameth.com/
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.

_text.sass 659B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Properties relating to text
  2. @import colours
  3. @import fonts
  4. body
  5. color: $text
  6. font-family: $text-font, Helvetica, sans-serif
  7. font-size: 18px
  8. font-weight: 400
  9. line-height: 1.75em
  10. -webkit-text-size-adjust: none
  11. a
  12. color: $cyan
  13. text-decoration-skip-ink: auto
  14. strong, b
  15. color: $gray
  16. font-weight: 400
  17. em, i
  18. font-style: italic
  19. sub
  20. font-size: 0.8em
  21. position: relative
  22. top: 0.5em
  23. sup
  24. font-size: 0.8em
  25. position: relative
  26. top: -0.5em
  27. p code
  28. background: $code-background
  29. border-radius: .35em
  30. border: solid 2px $code-border
  31. font-family: "Courier New", monospace
  32. font-size: .9em
  33. margin: 0 .25em
  34. padding: .25em .65em