index.css 322 B

12345678910111213141516171819202122232425262728293031
  1. body {
  2. margin: 0;
  3. }
  4. html {
  5. box-sizing: border-box;
  6. }
  7. *,
  8. *::before,
  9. *::after {
  10. box-sizing: inherit;
  11. }
  12. .wrapper {
  13. position: relative;
  14. width: 100%;
  15. overflow: hidden;
  16. min-height: 100vh;
  17. }
  18. ul {
  19. padding: 0;
  20. margin: 0;
  21. list-style: none;
  22. }
  23. img {
  24. max-width: 100%;
  25. height: auto;
  26. vertical-align: top;
  27. }