_reset.scss 322 B

1234567891011121314151617181920212223242526
  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. }
  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. }