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.

_background-size.css 781B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. BACKGROUND SIZE
  3. Docs: http://tachyons.io/docs/themes/background-size/
  4. Media Query Extensions:
  5. -ns = not-small
  6. -m = medium
  7. -l = large
  8. */
  9. /*
  10. Often used in combination with background image set as an inline style
  11. on an html element.
  12. */
  13. .cover { background-size: cover!important; }
  14. .contain { background-size: contain!important; }
  15. @media (--breakpoint-not-small) {
  16. .cover-ns { background-size: cover!important; }
  17. .contain-ns { background-size: contain!important; }
  18. }
  19. @media (--breakpoint-medium) {
  20. .cover-m { background-size: cover!important; }
  21. .contain-m { background-size: contain!important; }
  22. }
  23. @media (--breakpoint-large) {
  24. .cover-l { background-size: cover!important; }
  25. .contain-l { background-size: contain!important; }
  26. }