reset.scss 294 B

12345678910111213141516171819202122232425262728
  1. *,
  2. *::before,
  3. *::after {
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. }
  8. button {
  9. border: none;
  10. background: none;
  11. }
  12. a {
  13. text-decoration: none;
  14. color: inherit;
  15. outline: none;
  16. cursor: pointer;
  17. }
  18. a:hover,
  19. a:active {
  20. text-decoration: none;
  21. }
  22. ul, ol {
  23. list-style: none;
  24. }