redesign login box

This commit is contained in:
Milan
2019-10-04 00:29:46 +02:00
parent 131548fe0d
commit 80b1e484d3

View File

@@ -288,6 +288,10 @@ sub show_login_form ($$) {
padding:0.5rem;
}
input:hover{
cursor:pointer;
}
.container{
height: 100%;
display: table-cell;
@@ -301,8 +305,8 @@ sub show_login_form ($$) {
}
#login_form{
background:#ddd;
box-shadow: 6px 6px 6px #ccc;
background:#fff;
box-shadow: 1rem 1rem 1rem #eee;
margin:1rem;
padding:1rem;
text-align:center;
@@ -315,7 +319,7 @@ sub show_login_form ($$) {
#login_form .message{
color:white;
background:#666;
background:#004f9b;
text-align:left;
font-weight:bold;
padding:1rem;
@@ -329,6 +333,10 @@ sub show_login_form ($$) {
border:0;
font-weight:bold;
}
a{
text-decoration:none;
color:#ccf;
}
</style>
</head>