mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-14 22:22:35 +08:00
32 lines
649 B
CSS
Executable File
32 lines
649 B
CSS
Executable File
/* Login page */
|
|
.login-form {
|
|
width: 300px;
|
|
height: 450px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
font-family: Tahoma, Geneva, sans-serif;
|
|
}
|
|
|
|
.login-form h1 {
|
|
text-align: center;
|
|
color: #000000;
|
|
font-size: 24px;
|
|
padding: 20px 0 20px 0;
|
|
}
|
|
|
|
.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;
|
|
}
|