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.
103 lines
2.3 KiB
103 lines
2.3 KiB
@import "~@/asset/style/var";
|
|
|
|
.login-page {
|
|
$background-color: #2d3a4b;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow: auto;
|
|
|
|
canvas {
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: -1;
|
|
background-color: $background-color;
|
|
}
|
|
|
|
.login-container {
|
|
flex: 1;
|
|
padding: 32px 35px;
|
|
text-align: center;
|
|
width: 520px;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
|
|
.title {
|
|
padding-top: 120px;
|
|
margin-bottom: 40px;
|
|
cursor: pointer;
|
|
font-size: 26px;
|
|
color: #ffffff;
|
|
font-weight: bold;
|
|
position: relative;
|
|
|
|
.set-animation {
|
|
position: absolute;
|
|
top: 115px;
|
|
font-size: 18px;
|
|
right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.svg-container {
|
|
padding: 6px 5px 6px 0;
|
|
color: $--color-text-secondary;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
|
|
.show-pwd {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 7px;
|
|
font-size: 16px;
|
|
color: $--color-text-secondary;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.el-input {
|
|
display: inline-block;
|
|
height: 47px;
|
|
width: 85%;
|
|
|
|
input {
|
|
background-color: transparent;
|
|
border: 0;
|
|
-webkit-appearance: none;
|
|
border-radius: 0;
|
|
padding: 12px 5px 12px 15px;
|
|
color: #ffffff;
|
|
height: 47px;
|
|
}
|
|
}
|
|
|
|
.el-form-item {
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 5px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.other-ways {
|
|
color: #ffffff;
|
|
font-size: 14px;
|
|
|
|
svg {
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
|
|
&:hover {
|
|
color: $--color-primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|