reset.scss 406 B

123456789101112131415161718192021222324252627282930313233
  1. *{
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box;
  5. }
  6. html, body{
  7. margin: 0;
  8. padding: 0;
  9. height: 100%;
  10. font-size: 1rem;
  11. }
  12. ul, li, ol{
  13. margin: 0;
  14. padding: 0;
  15. list-style: none;
  16. }
  17. a{
  18. text-decoration: none;
  19. color: black;
  20. }
  21. p, ul, li, ol, h1, h2, h3, em, blockquote{
  22. margin: 0;
  23. }
  24. img{
  25. width: 100%;
  26. vertical-align: bottom;
  27. height: auto;
  28. }