dootask/resources/assets/sass/pages/page-login.scss
2021-06-10 13:23:01 +08:00

75 lines
2.1 KiB
SCSS
Vendored

.page-login {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #F3F6FE;
.login-body {
display: flex;
flex-direction: column;
align-items: center;
.login-logo {
width: 64px;
height: 64px;
background: url("../statics/images/logo.svg") no-repeat center center;
background-size: contain;
}
.login-box {
margin-top: 32px;
width: 450px;
border-radius: 12px;
background-color: #ffffff;
box-shadow: 0 0 10px #e6ecfa;
.login-title {
font-size: 24px;
font-weight: 600;
text-align: center;
margin-top: 36px;
}
.login-subtitle {
font-size: 14px;
text-align: center;
margin-top: 12px;
color: #AAAAAA;
}
.login-input {
margin: 40px;
> * {
margin-top: 26px;
}
.ivu-input {
border-color: #f1f1f1;
}
.login-code {
.ivu-input-group-prepend,
.ivu-input-group-append {
background: transparent;
border-color: #f1f1f1;
}
.ivu-input {
border-left-color: transparent;
border-right-color: transparent;
}
.login-code-end {
margin: -6px -7px;
height: 38px;
overflow: hidden;
cursor: pointer;
img {
height: 100%;
}
}
}
}
}
.login-forgot {
color: #aaaaaa;
margin-top: 36px;
}
}
}