62 lines
1.5 KiB
SCSS
62 lines
1.5 KiB
SCSS
.license{
|
|
height: 100%;
|
|
.license-form {
|
|
padding-top:40px;
|
|
padding-left:100px;
|
|
background-color: white;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
.license-file {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
margin-top: 3px;
|
|
.license__btn {
|
|
height: 30px;
|
|
min-width: 74px;
|
|
color: white;
|
|
background-color: #38ACD2;
|
|
border: none;
|
|
border-radius: 4px;
|
|
outline: none;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: background-color linear .2s, color linear .1s;
|
|
}
|
|
.license__btn:hover:not(.footer__btn--disabled) {
|
|
background-color: lighten(#38ACD2, 10%);
|
|
}
|
|
.license__btn--light {
|
|
background-color: #F5F6F7;
|
|
border: 1px solid $--border-color-primary;
|
|
color: #333;
|
|
}
|
|
.license__btn.license__btn--light:hover:not(.license__btn--disabled) {
|
|
background-color: white;
|
|
border-color: lighten(#38ACD2, 40%);
|
|
color: #38ACD2;
|
|
}
|
|
.license__btn--disabled {
|
|
opacity: .6;
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
.el-form .el-form-item {
|
|
margin-bottom: 0;
|
|
padding:4px 0;
|
|
font-size: 14px!important;
|
|
.el-form-item__label {
|
|
color: #262626 !important;
|
|
font-weight: bold;
|
|
}
|
|
.el-form-item__content {
|
|
color: #262626 !important;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|