index.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. ::-webkit-scrollbar {
  2. width: 8px;
  3. height: 8px;
  4. background-color: #f5f7fa;
  5. }
  6. ::-webkit-scrollbar-corner {
  7. background-color: #f5f7fa;
  8. }
  9. ::-webkit-scrollbar-thumb {
  10. border-radius: 10px;
  11. background-color: #cfcfcf;
  12. }
  13. ::-webkit-scrollbar-track {
  14. -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .2);
  15. background-color: #f5f7fa;
  16. }
  17. html,
  18. body,
  19. #app {
  20. height: 100%;
  21. width: 100%;
  22. }
  23. html {
  24. overflow: hidden;
  25. }
  26. body {
  27. margin: 0;
  28. font: 12px/1.5 Microsoft YaHei, Arial, Hiragino Sans GB, PingFang SC, Helvetica, Verdana, "\5FAE\8F6F\96C5\9ED1", sans-serif
  29. }
  30. #app {
  31. background: transparent;
  32. }
  33. a,
  34. blockquote,
  35. body,
  36. button,
  37. dd,
  38. dl,
  39. dt,
  40. fieldset,
  41. h1,
  42. h2,
  43. h3,
  44. h4,
  45. h5,
  46. h6,
  47. hr,
  48. input,
  49. lengend,
  50. li,
  51. ol,
  52. p,
  53. pre,
  54. table,
  55. td,
  56. textarea,
  57. th,
  58. tr,
  59. ul {
  60. margin: 0;
  61. padding: 0;
  62. border: 0;
  63. outline: 0;
  64. outline: none
  65. }
  66. a {
  67. text-decoration: none
  68. }
  69. a:hover {
  70. text-decoration: none
  71. }
  72. h1 {
  73. font-size: 18px
  74. }
  75. h2 {
  76. font-size: 16px
  77. }
  78. h3 {
  79. font-size: 14px
  80. }
  81. h4,
  82. h5,
  83. h6 {
  84. font-size: 100%
  85. }
  86. li,
  87. ol,
  88. ul {
  89. list-style: none
  90. }
  91. img {
  92. border: none
  93. }
  94. button,
  95. input,
  96. select,
  97. textarea {
  98. font-size: 100%
  99. }
  100. :focus {
  101. outline: none
  102. }