mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-15 00:32:46 +08:00
25 lines
536 B
CSS
Executable File
25 lines
536 B
CSS
Executable File
/* Login page */
|
|
.login-form {
|
|
width: 300px;
|
|
height: 250px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
font-family: Tahoma, Geneva, sans-serif;
|
|
}
|
|
|
|
.login-form input[type="password"],
|
|
.login-form input[type="text"] {
|
|
width: 100%;
|
|
padding: 15px;
|
|
border: 1px solid #dddddd;
|
|
margin-bottom: 15px;
|
|
box-sizing: border-box;
|
|
border-radius: 11px 11px 11px 11px;
|
|
-moz-border-radius: 11px 11px 11px 11px;
|
|
-webkit-border-radius: 11px 11px 11px 11px;
|
|
}
|