Notes/static/css/login.css

57 lines
1.2 KiB
CSS
Raw Normal View History

2023-07-18 07:09:03 +02:00
/*
@theme_gradient: linear-gradient(to right, #009fff, #ec2f4b);
@theme_gradient: linear-gradient(to right, #f5af19, #f12711);
@theme_gradient: linear-gradient(to right, #fdc830, #f37335);
@theme_gradient: linear-gradient(to right, #8a2387, #e94057, #f27121);
@theme_gradient: linear-gradient(to right, #659999, #f4791f);
*/
2023-06-15 07:24:23 +02:00
#login {
2023-07-18 07:09:03 +02:00
height: 100%;
background: #eee;
}
#login .header {
background: linear-gradient(to right, #3e5151, #decba4);
width: 100%;
padding: 16px;
text-align: center;
color: #fff;
}
#login .header h1 {
margin-bottom: 0px;
}
#login .fields {
2023-06-15 07:24:23 +02:00
display: grid;
justify-items: center;
2023-07-18 07:09:03 +02:00
padding: 32px;
2023-06-15 07:24:23 +02:00
}
2023-07-18 07:09:03 +02:00
#login .fields input {
2023-06-15 07:24:23 +02:00
margin-bottom: 32px;
border: 0px;
2023-07-18 07:09:03 +02:00
border: 1px solid #444;
padding: 8px;
width: 100%;
font-size: 1.25em;
2023-06-18 20:13:35 +02:00
background-color: #fff;
2023-06-15 07:24:23 +02:00
}
2023-07-18 07:09:03 +02:00
#login .fields input:focus {
2023-06-15 07:24:23 +02:00
outline: none;
}
2023-07-18 07:09:03 +02:00
#login .fields button {
2023-06-15 14:12:35 +02:00
border: 1px solid #666;
2023-06-18 20:13:35 +02:00
background: #fff;
2023-06-18 22:05:10 +02:00
color: #444;
2023-07-18 07:09:03 +02:00
padding: 12px 24px;
font-size: 1.25em;
2023-06-15 14:12:35 +02:00
align-self: center;
}
2023-07-18 07:09:03 +02:00
#login .fields button:hover {
2023-06-18 22:05:10 +02:00
background: #ddd;
}
2023-07-18 07:09:03 +02:00
#login .fields .auth-failed {
2023-06-17 09:11:14 +02:00
margin-top: 32px;
color: #a00;
background: #fff;
padding: 16px;
border-radius: 8px;
}