index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>工时管家</title>
  6. <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico"/>
  7. <link href="./static/css/public.css" rel="stylesheet" type="text/css"/>
  8. <style>
  9. /* 滚动条样式修改 */
  10. /*滚动条凹槽的颜色,还可以设置边框属性 */
  11. ::-webkit-scrollbar-track-piece {
  12. background-color:#f8f8f8;
  13. -webkit-border-radius: 2em;
  14. -moz-border-radius: 2em;
  15. border-radius: 2em;
  16. }
  17. /*滚动条的宽度*/
  18. ::-webkit-scrollbar {
  19. width:9px;
  20. height: 9px;}
  21. /*滚动条的设置*/
  22. ::-webkit-scrollbar-thumb {
  23. background-color:#dddddd;
  24. background-clip:padding-box;
  25. -webkit-border-radius: 2em;
  26. -moz-border-radius: 2em;
  27. border-radius: 2em;}
  28. /*滚动条鼠标移上去*/
  29. ::-webkit-scrollbar-thumb:hover {
  30. background-color:#bbb;
  31. }
  32. /*取消消息列表弹出框的内边距*/
  33. .popover-self {
  34. padding: 0 !important;
  35. }
  36. /*自定义颜色*/
  37. #nprogress .bar {
  38. background:#f58220 !important;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div id="app"></div>
  44. </body>
  45. </html>