36 lines
600 B
CSS
36 lines
600 B
CSS
#login {
|
|
display: grid;
|
|
justify-items: center;
|
|
height: 100%;
|
|
}
|
|
#login input {
|
|
max-width: 300px;
|
|
margin-bottom: 32px;
|
|
width: 100%;
|
|
border: 0px;
|
|
border-bottom: 1px solid #444;
|
|
font-size: 18pt;
|
|
background-color: #fff;
|
|
}
|
|
#login input:focus {
|
|
outline: none;
|
|
}
|
|
#login button {
|
|
max-width: 300px;
|
|
border: 1px solid #666;
|
|
background: #fff;
|
|
color: #444;
|
|
padding: 16px 32px;
|
|
font-size: 1em;
|
|
align-self: center;
|
|
}
|
|
#login button:hover {
|
|
background: #ddd;
|
|
}
|
|
#login .auth-failed {
|
|
margin-top: 32px;
|
|
color: #a00;
|
|
background: #fff;
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
}
|