You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
2.7 KiB
120 lines
2.7 KiB
|
6 years ago
|
@import "~@/asset/style/variables.scss";
|
||
|
6 years ago
|
|
||
|
6 years ago
|
$bg: #283443;
|
||
|
6 years ago
|
$light_gray: #ffffff;
|
||
|
6 years ago
|
$dark_gray: #889aa4;
|
||
|
6 years ago
|
$cursor: #ffffff;
|
||
|
6 years ago
|
|
||
|
|
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
|
||
|
|
.login-container .el-input input {
|
||
|
|
color: $cursor;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
6 years ago
|
.login-page {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
6 years ago
|
height: 100%;
|
||
|
6 years ago
|
overflow: auto;
|
||
|
6 years ago
|
|
||
|
|
canvas {
|
||
|
|
position: absolute;
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
z-index: -1;
|
||
|
|
background: #2d3a4b;
|
||
|
|
}
|
||
|
|
|
||
|
6 years ago
|
.login-container {
|
||
|
|
flex: 1;
|
||
|
6 years ago
|
padding: 32px 35px;
|
||
|
6 years ago
|
text-align: center;
|
||
|
6 years ago
|
width: 520px;
|
||
|
|
max-width: 100%;
|
||
|
6 years ago
|
margin: 0 auto;
|
||
|
6 years ago
|
|
||
|
|
.title {
|
||
|
6 years ago
|
padding-top: 120px;
|
||
|
|
margin-bottom: 40px;
|
||
|
|
cursor: pointer;
|
||
|
6 years ago
|
font-size: 26px;
|
||
|
|
color: #eee;
|
||
|
|
font-weight: bold;
|
||
|
6 years ago
|
position: relative;
|
||
|
6 years ago
|
|
||
|
|
.set-animation {
|
||
|
6 years ago
|
color: #ffffff;
|
||
|
6 years ago
|
position: absolute;
|
||
|
|
top: 115px;
|
||
|
|
font-size: 18px;
|
||
|
|
right: 10px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
6 years ago
|
}
|
||
|
|
|
||
|
6 years ago
|
.svg-container {
|
||
|
6 years ago
|
padding: 6px 5px 6px 0;
|
||
|
6 years ago
|
color: $dark_gray;
|
||
|
|
vertical-align: middle;
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
6 years ago
|
|
||
|
6 years ago
|
.show-pwd {
|
||
|
|
position: absolute;
|
||
|
|
right: 10px;
|
||
|
|
top: 7px;
|
||
|
|
font-size: 16px;
|
||
|
|
color: $dark_gray;
|
||
|
|
cursor: pointer;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
6 years ago
|
|
||
|
6 years ago
|
.el-input {
|
||
|
|
display: inline-block;
|
||
|
6 years ago
|
height: 47px;
|
||
|
6 years ago
|
width: 85%;
|
||
|
6 years ago
|
|
||
|
6 years ago
|
input {
|
||
|
|
background: transparent;
|
||
|
|
border: 0;
|
||
|
|
-webkit-appearance: none;
|
||
|
|
border-radius: 0;
|
||
|
|
padding: 12px 5px 12px 15px;
|
||
|
|
color: $light_gray;
|
||
|
|
height: 47px;
|
||
|
|
caret-color: $cursor;
|
||
|
|
|
||
|
|
&:-webkit-autofill {
|
||
|
|
box-shadow: 0 0 0 1000px $bg inset !important;
|
||
|
|
-webkit-text-fill-color: $cursor !important;
|
||
|
|
}
|
||
|
6 years ago
|
}
|
||
|
|
}
|
||
|
|
|
||
|
6 years ago
|
.el-form-item {
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
|
6 years ago
|
border-radius: 5px;
|
||
|
6 years ago
|
background: rgba(0, 0, 0, 0.1);
|
||
|
6 years ago
|
margin-bottom: 22px;
|
||
|
6 years ago
|
}
|
||
|
6 years ago
|
|
||
|
|
.submit-btn {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.other-ways {
|
||
|
6 years ago
|
color: #ffffff;
|
||
|
6 years ago
|
font-size: 14px;
|
||
|
|
|
||
|
|
svg {
|
||
|
|
cursor: pointer;
|
||
|
|
margin-left: 10px;
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
color: $--color-primary;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
6 years ago
|
}
|
||
|
|
}
|