_copy.scss 703 B

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