Notes/static/css/login.css
Magnus Åhall c255b58335 Wip
2023-06-17 09:11:14 +02:00

35 lines
579 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 #fff;
font-size: 18pt;
color: #fff;
background-color: #494949;
}
#login input:focus {
outline: none;
}
#login button {
max-width: 300px;
border: 1px solid #666;
background: #494949;
color: #fff;
padding: 16px 32px;
font-size: 0.8em;
align-self: center;
}
#login .auth-failed {
margin-top: 32px;
color: #a00;
background: #fff;
padding: 16px;
border-radius: 8px;
}