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.

_font-style.css 579B

1234567891011121314151617181920212223242526272829
  1. /*
  2. FONT STYLE
  3. Docs: http://tachyons.io/docs/typography/font-style/
  4. Media Query Extensions:
  5. -ns = not-small
  6. -m = medium
  7. -l = large
  8. */
  9. .i { font-style: italic; }
  10. .fs-normal { font-style: normal; }
  11. @media (--breakpoint-not-small) {
  12. .i-ns { font-style: italic; }
  13. .fs-normal-ns { font-style: normal; }
  14. }
  15. @media (--breakpoint-medium) {
  16. .i-m { font-style: italic; }
  17. .fs-normal-m { font-style: normal; }
  18. }
  19. @media (--breakpoint-large) {
  20. .i-l { font-style: italic; }
  21. .fs-normal-l { font-style: normal; }
  22. }