_copy.scss 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. p {
  2. -webkit-font-smoothing: antialiased;
  3. -moz-osx-font-smoothing: grayscale;
  4. font-weight: 300;
  5. }
  6. b,
  7. strong {
  8. font-weight: 700;
  9. }
  10. dfn,
  11. cite,
  12. em,
  13. i {
  14. font-style: italic;
  15. }
  16. blockquote {
  17. cite {
  18. font-size: $font__size-xs;
  19. font-style: normal;
  20. font-family: $font__heading;
  21. }
  22. }
  23. pre {
  24. font-size: $font__size-sm;
  25. font-family: $font__pre;
  26. line-height: $font__line-height-body;
  27. overflow: auto;
  28. }
  29. code,
  30. kbd,
  31. tt,
  32. var {
  33. font-size: $font__size-sm;
  34. font-family: $font__code;
  35. }
  36. abbr, acronym {
  37. border-bottom: 1px dotted #666;
  38. cursor: help;
  39. }
  40. mark,
  41. ins {
  42. background: #fff9c0;
  43. text-decoration: none;
  44. }
  45. big {
  46. font-size: 125%;
  47. }
  48. a {
  49. text-decoration: none;
  50. &:hover {
  51. text-decoration: none;
  52. }
  53. &:focus {
  54. text-decoration: underline;
  55. }
  56. }