H5 笔记(登录界面)

index.css

body{
    background-color: #F2F2F2;
}

/*------主要内容-------*/
#content{
    margin-top: 100px;
    text-align: center;
}

#content .panel{
    display: inline-block;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
}

#content .panel .group{

}

/*输入框*/
#content .panel .group input{
    display: block;
    width: 250px;
    height: 33px;
    padding-left: 7px;
    font-size: 15px;
    border:1px solid #ddd;
}

/*伪类*/
#content .panel .group input:focus{
    outline: none;
    border-left-color: #CC865E;
}

#content .panel .group label{
    display: block;
    text-align: left;
    height: 30px;
    line-height: 30px;
    font-size: 20px;

}

#content .login {
    margin-top: 20px;
}

/*登录*/
#content .login button{
    width: 250px;
    background-color: #CC865E;
}

#content .login button:hover{
    background-color: white;
    color: #CC865E;
    border: 1px solid  #CC865E;
    cursor: pointer;
}

#content button{
    height: 33px;
    border: 0px;
    color: white;
    font-size: 18px;
}

/*注册*/
#content .reg{
    margin-top: 20px;
}

#content .reg button{
    width: 200px;
    background-color: #466BAF;
}

#content .reg button:hover{
    background-color: white;
    color: #466BAF;
    border: 1px solid #466BAF;
    cursor: pointer;
}

index.html




    
    登录首页
    



   

你可能感兴趣的:(H5 笔记(登录界面))