normalize.scss 367 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 基本样式入口
  3. */
  4. html {
  5. -webkit-tap-highlight-color: transparent;
  6. }
  7. body {
  8. margin: 0;
  9. }
  10. a {
  11. text-decoration: none;
  12. }
  13. a,
  14. input,
  15. button,
  16. textarea {
  17. &:focus {
  18. outline: none;
  19. }
  20. }
  21. ol,
  22. ul {
  23. margin: 0;
  24. padding: 0;
  25. list-style: none;
  26. }
  27. input,
  28. button,
  29. textarea {
  30. font: inherit;
  31. color: inherit;
  32. }