Notes/static/less/login.less

62 lines
823 B
Plaintext
Raw Permalink Normal View History

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