| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- }
- </script>
- <style>
- body {
- overflow: auto;
- min-width: 1280px;
- font-size: 14px;
- }
- html, body, #app {
- height: 100%;
- }
- .el-table th.is-leaf {
- background: rgba(235,241,255);
- border-top: 1px solid #EBEEF5;
- }
- .el-table th.el-table__cell{
- background: rgba(235,241,255)!important;
- color: #333333!important;
- font-weight: normal!important;
- }
- .menu-content {
- margin: 25px;
- background: #FFFFFF;
- overflow: auto;
- position: absolute;
- left: 260px;
- top: 40px;
- bottom: 0;
- right: 0;
- padding: 25px;
- border-radius: 3px;
- }
- .page-box {
- text-align: center;
- margin-top: 20px;
- }
- .menu-content .el-table td, .menu-content .el-table th {
- padding: 10px 0;
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409EFF;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 178px;
- height: 178px;
- line-height: 178px;
- text-align: center;
- }
- .avatar {
- width: 178px;
- height: 178px;
- display: block;
- }
- .login-input .el-input__inner{
- height: 60px!important;
- line-height: 60px!important;
- border-radius: 10px!important;
- font-size: 16px!important;
- padding: 0px 30px 0 60px!important;
- }
- .el-tag {
- margin-left: 5px!important;
- margin-bottom: 5px!important;
- }
- .login-input i{
- font-size: 30px!important;
- line-height: 60px!important;
- margin-left: 15px!important;
- }
- .login-button{
- height: 50px!important;
- border-radius: 10px!important;
- //background: rgba(16,108,255, 1);
- border: none;
- font-size: 16px!important;
- letter-spacing:5px!important;
- margin-bottom: 20px;
- }
- /*滚动条样式*/
- ::-webkit-scrollbar {/*滚动条整体样式*/
- width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 1px;
- }
- ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px #d9d9d9;
- background: #d9d9d9;
- }
- ::-webkit-scrollbar-track { /*滚动条里面轨道*/
- -webkit-box-shadow: inset 0 0 5px #ffffff;
- border-radius: 0;
- background: #ffffff;
- }
- .el-dialog__header{
- background: cornflowerblue;
- padding-bottom:15px!important;
- padding-top: 15px!important;
- }
- .el-dialog__title{
- color: #ffffff!important;
- }
- .el-dialog__headerbtn .el-dialog__close{
- color: #ffffff!important;
- }
- .el-dialog__body{
- padding-bottom:20px!important;
- }
- .content-box .el-input__inner{
- height: 33px!important;
- line-height: 33px!important;
- }
- .content-box .el-button--primary,.content-box .el-button--default{
- padding: 9px 15px!important;
- font-size: 12px!important;
- }
- </style>
|