Notes/static/css/login.css

35 lines
573 B
CSS
Raw Normal View History

2023-06-15 07:24:23 +02:00
#login {
display: grid;
justify-items: center;
height: 100%;
}
2023-06-15 14:12:35 +02:00
#login input {
2023-06-15 07:24:23 +02:00
max-width: 300px;
margin-bottom: 32px;
width: 100%;
border: 0px;
border-bottom: 1px solid #fff;
font-size: 18pt;
color: #fff;
2023-06-18 20:13:35 +02:00
background-color: #fff;
2023-06-15 07:24:23 +02:00
}
2023-06-15 14:12:35 +02:00
#login input:focus {
2023-06-15 07:24:23 +02:00
outline: none;
}
2023-06-15 14:12:35 +02:00
#login button {
max-width: 300px;
border: 1px solid #666;
2023-06-18 20:13:35 +02:00
background: #fff;
2023-06-15 14:12:35 +02:00
color: #fff;
padding: 16px 32px;
font-size: 0.8em;
align-self: center;
}
2023-06-17 09:11:14 +02:00
#login .auth-failed {
margin-top: 32px;
color: #a00;
background: #fff;
padding: 16px;
border-radius: 8px;
}