style.css 660 B

12345678910111213141516171819202122232425262728293031
  1. html, body,#app {
  2. height:100%;
  3. width:100%;
  4. margin:0;
  5. padding:0;
  6. overflow:hidden;
  7. font-size:14px;
  8. font-family:微软雅黑;
  9. }
  10. /* 设置滚动条的样式 */
  11. ::-webkit-scrollbar {
  12. width: 3px;
  13. height: 3px;
  14. }
  15. /* 滚动槽 */
  16. ::-webkit-scrollbar-track {
  17. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  18. border-radius: 1px;
  19. }
  20. /* 滚动条滑块 */
  21. ::-webkit-scrollbar-thumb {
  22. border-radius: 10px;
  23. background: rgba(0,0,0,0.1);
  24. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  25. }
  26. ::-webkit-scrollbar-thumb:window-inactive {
  27. /* background: #409eff66;*/
  28. background: rgba(0,0,0,0.1);
  29. }