reset.css 363 B

1234567891011121314151617181920212223242526272829
  1. *,
  2. ::after,
  3. ::before {
  4. box-sizing: border-box;
  5. }
  6. html {
  7. height: 100%;
  8. line-height: 1.5;
  9. }
  10. body {
  11. color: #212529;
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. font-size: 16px;
  14. font-weight: 400;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .clear::after {
  19. clear: both;
  20. content: '';
  21. display: block;
  22. height: 0;
  23. line-height: 0;
  24. margin: 0;
  25. padding: 0;
  26. }