_typography.scss 406 B

123456789101112131415161718192021222324252627282930313233
  1. h1, h2, h3, h4, h5 {
  2. font-weight: 700;
  3. }
  4. h1 {
  5. font-size: 2.2em;
  6. }
  7. h2 {
  8. font-size: 1.5em;
  9. }
  10. html, input, textarea {
  11. font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
  12. }
  13. em {
  14. font-style: italic;
  15. }
  16. strong {
  17. font-weight: bold;
  18. }
  19. .text-bold {
  20. font-weight: bold;
  21. }
  22. .text-italic {
  23. font-style: italic;
  24. }
  25. .text-strike {
  26. text-decoration: line-through;
  27. }