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