yunpan
Version:
yunpan demo
77 lines (73 loc) • 1.36 kB
CSS
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html , body {
width: 100%;
height: 100%;
}
.login{
position: relative;
width: 100%;
height: 100%;
background-image: url(../image/bg3.jpg);
background-size: cover;
}
.container{
position: absolute;
top: 50%;
left: 50%;
width: 352px;
height: 324px;
background-color: #fff;
transform: translate(-50%,-50%);
box-shadow: rgba(0,0,0,0.6) 0 0 50px;
border-radius: 4px;
}
.title{
line-height: 60px;
font-size: 26px;
text-align: center;
font-weight: bold;
margin: 10px 0;
}
.login-main {
}
.login-main input{
position: relative;
display: block;
width: 312px;
height: 36px;
line-height: 36px;
outline: none;
border:1px solid #ccc;
text-indent: 6px;
margin: 0 auto;
}
.login-main input[type="text"]{
border-top-left-radius : 3px;
border-top-right-radius : 3px;
}
.login-main input[type="password"]{
top:-1px;
border-bottom-left-radius : 3px;
border-bottom-right-radius : 3px;
}
input:-webkit-autofill{
background-color: #fff ;
}
input:focus{
outline: none;
}
.submit-btn{
width: 312px;
height: 36px;
line-height: 36px;
background-color: #4a68ec;
border-radius: 3px;
text-align: center;
margin: 20px auto 0;
color:#fff;
cursor: pointer;
}