css实现简洁模糊大气的后台登录页面代码

代码语言:html

所属分类:布局界面

代码描述:css实现简洁模糊大气的后台登录页面代码

代码标签: 模糊 大气 后台 登录 页面

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8"><title>登录注册忘记密码页面</title><link rel="stylesheet" href="css/normalize.min.css">

    <style>
        * {
            outline-width: 0;
            font-family: "Nunito"!important
        }

        body {
            height: 100vh;
            width: 100vw;
            background: url("//repo.bfw.wiki/bfwrepo/image/607aa1b0d81d0.png") center/cover fixed;
            display: flex;
            justify-content: center;
            align-items: center
        }

        #formContainer {
            display: flex;
            transition: .2s ease;
            height: 342.5px;
            transition-delay: .3s
        }

        #formContainer.toggle {
            height: 480px;
            transition-delay: 0s
        }

        .formLeft {
            background: #fff;
            border-radius: 5px 0 0 5px;
            padding: 0 35px;
            box-sizing: border-box;
            display: flex;
            align-items: center
        }

        .formLeft img {
            display: block;
            width: 72px;
            border-radius: 50%;
            box-shadow: 0 5px 5px rgba(0,0,0,0.2)
        }

        .formRight {
            position: relative;
            overflow: hidden;
            border-radius: 0 5px 5px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
          
        }

        .formRight:before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            width: calc(100% + 20px);
            height: calc(100% + 20px);
            background: url("//repo.bfw.wiki/bfwrepo/image/607aa1b0d81d0.png") center/cover fixed;
            box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.5);
            f.........完整代码请登录后点击上方下载按钮下载查看

网友评论0