12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- body {
- margin: 0;
- overflow: hidden;
- background-image: url(../../2.jpg);
- background-position:50% 50%;
- background-origin:content;
- background-size:contain;
- background-repeat:no-repeat;
- }
- #inputpage {
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- position: absolute;
- display: table;
- }
- #inputpage #middle {
- display: table-cell;
- vertical-align: middle;
- }
- #inputpage div {
- width: 400px;
- margin: auto auto;
- padding: 20px 20px 20px 20px;
- font-weight: 400;
- background: #fff;
- border: 1px solid #e5e5e5;
- -webkit-box-shadow: rgba(200,200,200,.7) 0 4px 10px -1px;
- box-shadow: rgba(200,200,200,.7) 0 4px 10px -1px;
- border-radius:5px;
- border-color: #f0f0f0;
- border-bottom-color: #f0f0f0;
- }
- #middle div p {
- }
- #middle div .tagzone {
- width: 100%;
- height: 25px;
- margin-bottom: 10px;
- }
- #middle label {
- color: #000;
- font-size: 14px;
- display:inline-block;
- width: 20%;
- }
- #middle div .input, .login input[type=text] {
- color: #093;
- font-weight: 200;
- font-size: 14px;
- line-height: 1;
- width: 100%;
- height: 20px;
- margin-right: 6px;
- margin-bottom: 50px;
- border: 1px solid #e5e5e5;
- background: #0F3;
- outline: 0;
- -webkit-box-shadow: inset 1px 1px 2px rgba(200,200,200,.2);
- box-shadow: inset 1px 1px 2px rgba(200,200,200,.2);
- display:inline-block;
- border-radius:5px;
- }
- #name_submit {
- display:inline-block;
- float: right;
- height: 22px;
- }
|