global.css 504 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. * {
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
  6. Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  7. text-decoration: none;
  8. letter-spacing: 0.5px;
  9. }
  10. #app {
  11. width: 100vw;
  12. height: 100vh;
  13. }
  14. a {
  15. color: #222;
  16. text-decoration: none;
  17. }
  18. input,
  19. textarea {
  20. outline: none;
  21. }
  22. ul,
  23. ol {
  24. list-style: none;
  25. }
  26. img {
  27. vertical-align: middle;
  28. border: 0;
  29. }
  30. [hidden] {
  31. display: none;
  32. }