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.

24 lines
244B

  1. /*===================*/
  2. /* global CSS rules */
  3. /*===================*/
  4. * {
  5. box-sizing: border-box;
  6. }
  7. * {
  8. max-width: var(--measure);
  9. }
  10. /* exceptions to the above rule */
  11. html,
  12. body,
  13. div,
  14. header,
  15. nav,
  16. main,
  17. footer {
  18. max-width: none;
  19. }