A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© sout(黑马) 初级黑马   /  2019-4-17 19:34  /  1277 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>登录界面</title>
    <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
    <style>
        body {
            box-sizing:border-box;
            padding-top:calc(30vh - 6em);
            font:150%/1.6 Baskerville,Palatino,serif;
            background: url(img/bgground2.png) no-repeat;
        }
        body,.bg_img::before {
            background:url("img/bgground2.png") 0 / cover fixed;
        }
        .bg_img {
            position:relative;
            margin:0 auto;
            padding:1em;
            max-width:23em;
            background:hsla(0,0%,100%,.25) border-box;
            overflow:hidden;
            border-radius:.3em;
            box-shadow:0 0 0 1px hsla(0,0%,100%,.3) inset,0 .5em 1em rgba(0,0,0,0.6);
            text-shadow:0 1px 1px hsla(0,0%,100%,.3);
        }
        .bg_img::before {
            content:'';
            position:absolute;
            top:0;
            right:0;
            bottom:0;
            left:0;
            margin:-30px;
            z-index:-1;
            -webkit-filter:blur(20px);
            filter:blur(20px);
        }
        .pad-top {
            padding-top:50px
        }
        #asider {
            height: 360px;
            padding-right: 78px;
        }
        #asider form > div{
            height: 60px;
        }
        #asider form input{
            width: 200px;
        }
        .btn-m {
            margin-left: 125px;
        }
        .btn-m button {
            width: 90px;
            height: 35px;
            background-color: rgba(0, 0, 0, 0.08);
        }
    </style>
</head>

<body>
<div class="bg_img" id="asider">

    <img src="img/logo.jpg" class="img-responsive">
    <form class="form-horizontal pad-top" method="post" action="index.html">
        <div class="form-group">
            <label for="username" class="col-sm-4 control-label">用户名</label>
            <div class="col-sm-4">
                <input type="text" class="form-control" id="username" placeholder="请输入用户名">
            </div>
        </div>
        <div class="form-group">
            <label for="password" class="col-sm-4 control-label">密码</label>
            <div class="col-sm-4">
                <input type="password" class="form-control" id="password" placeholder="请输入密码">
            </div>
        </div>
        <div class="form-group">
            <div class="col-sm-offset-2 col-sm-8 btn-m">
                <button type="submit" class="btn btn-default">登录</button>
            </div>
        </div>
    </form>
</div>
<script src="js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
</body>

</html>

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马