dootask/resources/assets/sass/pages/page-login.scss
2022-05-13 19:35:26 +08:00

207 lines
5.7 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: #f8f8f8;
.login-body {
display: flex;
flex-direction: column;
align-items: center;
padding: 32px 0;
width: 100%;
max-height: 100%;
overflow: auto;
.login-logo {
flex-shrink: 0;
width: 84px;
height: 84px;
background: url("../images/logo.svg") no-repeat center center;
background-size: contain;
&.can-click {
cursor: pointer;
}
}
.login-box {
margin-top: 36px;
width: 400px;
max-width: 90%;
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;
padding: 0 12px;
color: #AAAAAA;
}
.login-input {
margin: 32px 40px;
> * {
margin-top: 26px;
}
.ivu-input {
border-color: #f1f1f1;
&[readonly="readonly"] {
background-color: #f5f5f5;
}
}
.ivu-input-large {
font-size: 15px;
}
.login-code {
.ivu-input-group-prepend,
.ivu-input-group-append {
font-size: 14px;
background: transparent;
border-color: #f1f1f1;
}
.ivu-input {
border-left-color: transparent;
}
.login-code-end {
margin: -6px -7px;
height: 38px;
overflow: hidden;
cursor: pointer;
img {
height: 100%;
}
}
}
.login-switch {
color: #aaaaaa;
}
.login-input-tips-box{
position: relative;
.login-input-tips{
font-size: 12px;
position: absolute;
left: 0;
bottom: -20px;
color: #c7c7c7;
}
}
> .ivu-poptip {
width: 100%;
> .ivu-poptip-rel {
width: 100%;
}
}
}
}
.login-bottom {
margin-top: 18px;
display: flex;
align-items: center;
width: 388px;
max-width: 90%;
.login-setting {
flex-shrink: 0;
display: flex;
align-items: center;
cursor: pointer;
color: #666666;
.taskfont {
margin-top: 1px;
margin-left: 3px;
transform: scale(0.8);
font-size: 12px;
}
}
.login-setting-menu {
display: flex;
flex-direction: column;
}
.login-setting-item {
display: flex;
align-items: center;
justify-content: space-between;
.ivu-icon {
color: #666666;
padding-left: 6px;
margin-right: -6px;
}
}
.login-forgot {
flex: 1;
padding-left: 24px;
color: #aaaaaa;
text-align: right;
}
}
}
}
@media (max-width: 768px) {
.page-login {
.login-body {
padding: 0 0 110px;
.login-logo {
margin-top: 24px;
width: 76px;
height: 76px;
}
.login-box {
margin-top: 0;
width: 100%;
max-width: 460px;
border-radius: 12px;
background-color: transparent;
box-shadow: none;
.login-title {
font-size: 26px;
}
.login-subtitle {
margin-top: 4px;
}
.login-input {
margin: 20px 36px;
.ivu-input-large {
height: 44px;
}
.ivu-input-with-prefix {
padding-left: 40px;
}
.ivu-input-prefix,
.ivu-input-suffix {
width: 44px;
}
.ivu-input-wrapper-large .ivu-input-prefix i,
.ivu-input-wrapper-large .ivu-input-suffix i {
font-size: 20px;
line-height: 44px;
}
}
}
.login-bottom {
margin-top: 8px;
width: 100%;
max-width: 460px;
padding: 0 36px;
}
}
}
}