You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
829 B

3 years ago
  1. @charset "utf-8";
  2. body {
  3. font:14px/1.5 "Microsoft Yahei","微软雅黑",Tahoma,Arial,Helvetica,STHeiti;
  4. }
  5. .btn-primary{
  6. background-color: #08c !important;
  7. background-image: linear-gradient(to bottom,#08c,#08c);
  8. }
  9. .btn-primary:active{
  10. background-color: #07c !important;
  11. }
  12. .btn-primary:hover{
  13. background-color: #07c !important;
  14. background-image: linear-gradient(to bottom,#07c,#07c);
  15. }
  16. /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  17. ::-webkit-scrollbar
  18. {
  19. width: 7px;
  20. height: 10px;
  21. background-color: rgba(0, 0, 0, 0.1);
  22. }
  23. /*定义滑块 内阴影+圆角*/
  24. ::-webkit-scrollbar-thumb
  25. {
  26. background-color: rgba(0, 0, 0, 0.3);
  27. -webkit-border-radius:6px;
  28. -moz-border-radius: 6px;
  29. -ms-border-radius: 6px;
  30. -o-border-radius: 6px;
  31. border-radius: 6px;
  32. }