Ohm-Management - Projektarbeit B-ME
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.

container.sass 590B

12345678910111213141516171819202122232425
  1. .container
  2. margin: 0 auto
  3. position: relative
  4. +desktop
  5. max-width: $desktop - (2 * $gap)
  6. width: $desktop - (2 * $gap)
  7. &.is-fluid
  8. margin-left: $gap
  9. margin-right: $gap
  10. max-width: none
  11. width: auto
  12. +until-widescreen
  13. &.is-widescreen
  14. max-width: $widescreen - (2 * $gap)
  15. width: auto
  16. +until-fullhd
  17. &.is-fullhd
  18. max-width: $fullhd - (2 * $gap)
  19. width: auto
  20. +widescreen
  21. max-width: $widescreen - (2 * $gap)
  22. width: $widescreen - (2 * $gap)
  23. +fullhd
  24. max-width: $fullhd - (2 * $gap)
  25. width: $fullhd - (2 * $gap)