reset.scss 375 B

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