page.css 326 B

1234567891011121314151617181920212223242526
  1. /**
  2. * Use a comfortable measure in all browsers (opinionated).
  3. */
  4. html {
  5. padding: 1em;
  6. }
  7. @media (min-width: 34em) {
  8. html {
  9. padding: 1em calc(50% - 16em);
  10. }
  11. }
  12. /**
  13. * Restrict sizing to the page width in all browsers (opinionated).
  14. */
  15. iframe,
  16. img,
  17. input,
  18. select,
  19. textarea {
  20. height: auto;
  21. max-width: 100%;
  22. }