创建登陆页面

效果图

 

 

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>后台管理系统</title>
    <style>

    body {
        background-color: #8ea4f8;
        background-image: url(images/background.jpg);
        background-repeat: no-repeat;
        background-size: cover; //背景图适应屏幕

    }
    .login_box {
        width: 400px;
        height: 400px;
        background-color: #fff;
        margin: auto;
        margin-top: 150px;
        border-radius: 5px;
        overflow: hidden;//.title设置margin-top无效,给父元素设置overflow:hidden;
    }
    .title {
        text-align: center;
        font-size: 28px;
        color: #000;
        margin-top: 80px;
        margin-bottom: 10px;
        letter-spacing: 3px;
        font-family: sans-serif;
    }
    .input_box {
        width: 300px;
        height: 30px;
        width: 300px;
        height: 40px;
        padding-left: 10px;
        margin-top: 20px;
        margin-left: 50px;
    }
    .button_box {
        width: 300px;
        height: 35px;
        width: 300px;
        height: 40px;
        margin-top: 20px;
        margin-left: 50px;
        border-radius: 5px;
        background-color: #64a9d9;
        cursor: pointer;
        color: #fff;
    }
    .logo_box {
        position: absolute;
        background-color: #fff;
        width: 100px;
        height: 100px;
        border-radius: 100px;
        top: 100px;
        left: 46%;
        border: solid 5px #A68364;
        text-align: center;
    }
    .logo_img {
        margin-top: 20px;
    }
    </style>

</head>

<body>
    <div class="logo_box"><img class="logo_img" src="images/login_logo.png"></div>
    <div class="login_box">
        <h1 class="title">欢迎登录</h1>
        <input class="input_box" type="text" placeholder="用户名">
        <input class="input_box" type="password" placeholder="密码">
        <input class="button_box" type="button" value="登录">
    </div>

</body>
</html>

 

posted @ 2022-07-04 10:06  小小仓鼠  阅读(25)  评论(0编辑  收藏  举报