• 新闻网站项目静态页面--登录页


    外联css login.css:

    body{
        background-image:url(../images/login/backgroundimg.png);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .ui.basic.segment.container.content{
       425px;
    
      margin-left: 50%;
      margin-top: 389px;
    }
    .ui.header{
      color:red;
      font-size: 50px !important;
      height: 75px;
    }
    input{
        border-radius: 31.5px!important;
        height: 31px!important;
        background-color: #ffffff!important;
        border: solid 1px #ededed!important;
    }
    .field{
      position: relative;
    }
    .two.fields > .field{
      position: relative;
    }
    .ui.image.top{
      position: absolute;
      left: -20px;
      top:10px;
    }
    .ui.image.bottom{
       10px;
      height: 10px;
      position: absolute;
      left: -20px;
      margin: 0;
    }
    label{
      font-size: 12px!important;
      color: #9b9b9b !important;
    }
    .ui.right.floated.red.circular.button{
         102px;
        height: 31px;
        background-color: #f30c28;
        margin-top: 6px;
        margin-right: 5px;
        font-size: 16px!important;
        font-weight: bold;
        padding-top: 7px;
    }
    .ui.basic.segment.container.footer{
      position: relative;
      margin-top: 150px;
    }
    .ui.circular.red.button.backtoindex{
       31px!important;
      height: 62px;
      border-radius: 15.5px;
      background-color: #f30c28;
      position: absolute;
      transform: translate(-50%,-50%);
      left: 50%;
      top:30px;
      padding: 0;
    }
    img{
      margin-left: 2px;
    }
    h4{
        font-size: 12px!important;
        color: #ffffff;
        margin-left: 2px;
    }
    .ui.image.title{
      position: relative;
      transform: translate(-50%);
      left: 50%;
      top:45px;
    }
    

    html文件:

    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        <title>登录页</title>
        <link rel="stylesheet" href="css/semantic.css" media="screen" title="no title" charset="utf-8">
        <link rel="stylesheet" href="css/login.css" media="screen" title="no title" charset="utf-8">
      </head>
      <body>
        <div class="ui basic segment container content">
          <h1 class="ui center aligned header">登录</h1>
          <div class="ui form">
            <div class="field">
              <div class="ui  image top">
                <img src="images/login/usericon.png" alt="" />
              </div>
              <input type="text" placeholder="注册邮箱">
            </div>
            <div class="field">
              <div class="ui  image top">
                <img src="images/login/lockicon.png" alt="" />
              </div>
              <input type="text" placeholder="密码">
            </div>
            <div class="two fields">
              <div class="field">
                <div class="ui image bottom" style="top:6px;">
                  <img src="images/login/checkboxicon.png" alt="" />
                </div>
                <label>记住我</label>
                <div class="ui image bottom" style="top:29px;">
                  <img src="images/login/passwordicon.png" alt="" />
                </div>
                <label>忘记密码</label>
              </div>
              <div class="field">
                <button class="ui right floated red circular button"type="button" name="button">登录</button>
              </div>
            </div>
          </div>
        </div>
        <div class="ui basic segment container footer">
          <div class="bottom">
            <div class="ui divider"></div>
            <button type="button" name="button" class="ui circular red button backtoindex">
                <img src="images/login/homeicon.png" style="position:absolute;left:18%;top:10%;">
                <h4>首页</h4>
            </button>
            <div class="ui image title">
                <img src="images/login/zhiribao.png" alt="" />
            </div>
          </div>
        </div>
      </body>
    </html>
    

    新样式:two fields

     

  • 相关阅读:
    python常用模块(3)
    python中的re模块
    python中的常用模块
    python中的模块及路径
    python中的文件操作(2)
    【weixin】微信支付简介
    【其他】博客园样式修改
    【weixin】微信企业号和公众号区别和关系是什么?
    【其他】./ 和../ 以及/区别
    【sdudy】ASCII,Unicode和UTF-8终于找到一个能完全搞清楚的文章了
  • 原文地址:https://www.cnblogs.com/xyxpython/p/6602761.html
Copyright © 2020-2023  润新知