index.css 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. *,
  2. ::before,
  3. ::after {
  4. box-sizing: border-box;
  5. border-color: currentcolor;
  6. border-style: solid;
  7. border-width: 0;
  8. }
  9. #app {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. html {
  14. box-sizing: border-box;
  15. width: 100%;
  16. height: 100%;
  17. line-height: 1.5;
  18. tab-size: 4;
  19. text-size-adjust: 100%;
  20. }
  21. body {
  22. width: 100%;
  23. height: 100%;
  24. margin: 0;
  25. overflow: hidden;
  26. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  27. "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  28. line-height: inherit;
  29. -moz-osx-font-smoothing: grayscale;
  30. -webkit-font-smoothing: antialiased;
  31. text-rendering: optimizelegibility;
  32. }
  33. a {
  34. color: inherit;
  35. text-decoration: inherit;
  36. }
  37. img,
  38. svg {
  39. display: inline-block;
  40. }
  41. svg {
  42. vertical-align: -0.15em;
  43. }
  44. ul,
  45. li {
  46. padding: 0;
  47. margin: 0;
  48. list-style: none;
  49. }
  50. *,
  51. *::before,
  52. *::after {
  53. box-sizing: inherit;
  54. }
  55. a,
  56. a:focus,
  57. a:hover {
  58. color: inherit;
  59. text-decoration: none;
  60. cursor: pointer;
  61. }
  62. a:focus,
  63. a:active,
  64. div:focus {
  65. outline: none;
  66. }