Notes/static/less/login.less

45 lines
614 B
Plaintext
Raw Permalink Normal View History

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