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.

_position.css 830B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. POSITIONING
  3. Docs: http://tachyons.io/docs/layout/position/
  4. Media Query Extensions:
  5. -ns = not-small
  6. -m = medium
  7. -l = large
  8. */
  9. .static { position: static; }
  10. .relative { position: relative; }
  11. .absolute { position: absolute; }
  12. .fixed { position: fixed; }
  13. @media (--breakpoint-not-small) {
  14. .static-ns { position: static; }
  15. .relative-ns { position: relative; }
  16. .absolute-ns { position: absolute; }
  17. .fixed-ns { position: fixed; }
  18. }
  19. @media (--breakpoint-medium) {
  20. .static-m { position: static; }
  21. .relative-m { position: relative; }
  22. .absolute-m { position: absolute; }
  23. .fixed-m { position: fixed; }
  24. }
  25. @media (--breakpoint-large) {
  26. .static-l { position: static; }
  27. .relative-l { position: relative; }
  28. .absolute-l { position: absolute; }
  29. .fixed-l { position: fixed; }
  30. }