49 lines
883 B
CSS
49 lines
883 B
CSS
.login {
|
|
padding: 0 16px;
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.login .enter {
|
|
width: 39%;
|
|
text-align: center;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border: 1px solid #f3eaea;
|
|
border-radius: 24px;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
.login .user_input {
|
|
margin-bottom: 22px;
|
|
}
|
|
.login .user_input input {
|
|
height: 40px;
|
|
width: 100%;
|
|
padding-left: 15px;
|
|
box-sizing: border-box;
|
|
border-bottom: 1px solid #f2f2f2;
|
|
}
|
|
.login img {
|
|
width: 110px;
|
|
height: 110px;
|
|
border-radius: 100%;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.modal-body {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.modal-body img {
|
|
margin-bottom: 7px;
|
|
width: 22%;
|
|
border-radius: 100%;
|
|
margin-right: 8px;
|
|
}
|
|
.modal-body .active {
|
|
border: 4px solid;
|
|
} |