1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>运营商后台</title>
- <style type="text/css">
- .el-pagination.is-background .el-pager li:not(.disabled).active{
- background-color: #0099cc !important;
- }
- .el-pagination.is-background .el-pager li{
- background-color: #FFFFFF;
- border: 1px solid #f4f4f5;
- }
- * {
- box-sizing: border-box;
- }
- html,body,#app {
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|