mirror of
https://github.com/coder/code-server.git
synced 2026-05-26 15:13:28 +00:00
54 lines
914 B
CSS
54 lines
914 B
CSS
.login-form {
|
|
align-items: center;
|
|
background: #fcfcfc;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
color: rgba(0, 0, 0, 0.37);
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100%;
|
|
justify-content: center;
|
|
max-height: 400px;
|
|
max-width: 664px;
|
|
padding: 20px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.login-form > .header {
|
|
align-items: center;
|
|
color: #b6b6b6;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.login-form > .field {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.login-form > .error {
|
|
color: red;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.login-form > .field > .password {
|
|
border: 1px solid #b6b6b6;
|
|
box-sizing: border-box;
|
|
padding: 1rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.login-form > .user {
|
|
display: none;
|
|
}
|
|
|
|
.login-form > .field > .submit {
|
|
background-color: transparent;
|
|
border: 1px solid #b6b6b6;
|
|
box-sizing: border-box;
|
|
margin-left: -1px;
|
|
padding: 1rem 2rem;
|
|
}
|