reset.less 895 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-decoration: none;
  6. cursor:pointer;
  7. }
  8. html,body{
  9. height: 100%;
  10. }
  11. a{
  12. display: block;
  13. height:100%;
  14. color:#000000;
  15. }
  16. a:visited{color:#000000;}
  17. //重写滚动条样式
  18. ::-webkit-scrollbar {
  19. width: 5px;
  20. height: 3px;
  21. background-color: rgba(0,0,0,.3);
  22. }
  23. /*定义滚动条轨道 内阴影+圆角*/
  24. ::-webkit-scrollbar-track {
  25. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  26. background: #fff ;
  27. }
  28. /*定义滑块 内阴影+圆角*/
  29. ::-webkit-scrollbar-thumb {
  30. border-radius: 3px;
  31. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  32. background-color:rgba(0,0,0,.3);
  33. }
  34. ::-webkit-scrollbar-thumb:hover {
  35. border-radius: 3px;
  36. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  37. // background-color:rgba(7, 170, 247, 1);
  38. // background-color:rgba(0,0,0,.4);
  39. }