123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>工时管家</title>
- <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico"/>
- <link href="./static/css/public.css" rel="stylesheet" type="text/css"/>
- <style>
- /* 滚动条样式修改 */
- /*滚动条凹槽的颜色,还可以设置边框属性 */
- ::-webkit-scrollbar-track-piece {
- background-color:#f8f8f8;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- /*滚动条的宽度*/
- ::-webkit-scrollbar {
- width:9px;
- height: 9px;}
- /*滚动条的设置*/
- ::-webkit-scrollbar-thumb {
- background-color:#dddddd;
- background-clip:padding-box;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;}
- /*滚动条鼠标移上去*/
- ::-webkit-scrollbar-thumb:hover {
- background-color:#bbb;
- }
- /*取消消息列表弹出框的内边距*/
- .popover-self {
- padding: 0 !important;
- }
- /*自定义颜色*/
- #nprogress .bar {
- background:#f58220 !important;
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- </body>
- </html>
|