123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- @import './variables.scss';
- @import './mixin.scss';
- @import './transition.scss';
- @import './element-ui.scss';
- @import './sidebar.scss';
- body {
- height: 100%;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- label {
- font-weight: 700;
- }
- html {
- height: 100%;
- box-sizing: border-box;
- }
- #app {
- height: 100%;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- a:focus,
- a:active {
- outline: none;
- }
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- }
- // main-container global css
- .mb-20 {
- margin-bottom: 20px
- }
- .font-16 {
- font-size: 16px
- }
- .padding-20 {
- padding: 20px
- }
- .text-center {
- text-align: center
- }
- .delete-text {
- color: #F80000
- }
- .app-container {
- padding: 20px;
- width: 100%;
- height: 100%;
- margin: 20px;
- background: #fff;
- min-height: calc(100vh - 140px)
- }
- .filter-container {
- width: 100%;
- height: 100%;
- .el-button+.el-button {
- margin-left: 30px!important;
- }
- .filter-item {
- margin-right: 30px;
- display: inline-block;
- }
- }
- .el-input__inner {
- height: 36px;
- line-height: 36px
- }
- .el-button {
- padding: 10px 12px
- }
- .el-table td,
- .el-table th {
- padding: 10px 0
- }
- // 弹框样式start
- .el-dialog__header {
- background: #f8f8f8;
- padding: 16px 20px 16px;
- }
- .el-form-item {
- width: 400px;
- margin: 0 auto 20px;
- }
- // 弹框样式end
- // 台区列表
- .siteTitle {
- font-size: 16px;
- padding: 10px 20px 30px 20px;
- text-align: center;
- position: relative;
- .goBack {
- position: absolute;
- left: 0;
- top: 0
- }
- }
|