@daiyu-5577/quickbuild
Version:
front-end build service
99 lines (85 loc) • 1.86 kB
text/less
@keyframes bgc {
0% {
background: #628ed0;
}
100% {
background: #c3e2d9;
}
}
.login {
height: 100vh;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
animation: bgc 3s linear alternate infinite;
.loginWrap {
margin-top: -100px;
.title {
font-size: 18px;
color: rgba(0, 0, 0, .6);
font-weight: bold;
margin-bottom: 6px;
letter-spacing: 1px;
font-style: italic;
}
.tab {
background-color: rgba(251, 245, 224, .8);
border-radius: 30px;
padding: 2px;
display: flex;
margin-top: 20px;
.tab-item {
font-size: 14px;
text-align: center;
padding: 4px 10px;
flex: 1;
color: #754F4E;
font-weight: bold;
border-radius: 30px;
transition: all 0.3s;
cursor: pointer;
&.tab-item-active {
color: #fff;
background: linear-gradient(90deg, #F8B632, #F29531);
transform: scale(1.01);
}
}
}
.form {
margin-top: 20px;
.form-item {
margin-bottom: 10px;
label {
text-align: right;
font-size: 14px;
color: #000;
margin-bottom: 4px;
width: 70px;
padding: 0 10px;
display: inline-block;
}
input {
border: 1px solid #2c96ff;
outline: none;
height: 20px;
border-radius: 2px;
}
.btn-login {
border-radius: 20px;
width: 100%;
height: 30px;
outline: none;
border: none;
background-color: #2c96ff;
color: #fff;
font-size: 14px;
transition: all 0.3s;
&:active {
transform: scale(0.95);
}
}
}
}
}
}