css实现简洁的系统登录注册页面效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现简洁的系统登录注册页面效果代码

代码标签: 系统 登录 注册 页面 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/normalize.min.css">
    <style>
@import url("https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap");
        * {
            box-sizing: border-box;
        }

        body {
            font-family: "Rubik", sans-serif;
        }

        .container {
            display: flex;
            height: 100vh;
        }

        .left {
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
            -webkit-animation-name: left;
            animation-name: left;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            -webkit-animation-delay: 1s;
            animation-delay: 1s;
        }

        .right {
            flex: 1;
            background-color: black;
            transition: 1s;
            background-image: url(//repo.bfw.wiki/bfwrepo/image/604a26e01dd36.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        .header > h2 {
            margin: 0;
        }

        .header > h4 {
            margin-top: 10px;
            font-weight: normal;
            font-size: 15px;
            color: rgba(0, 0, 0, 0.4);
        }

        .form {
            max-width: 80%;
            display: flex;
            flex-direction: column;
        }

        .form > p {
            text-align: right;
        }

        .form > p > a {
            color: #000;
            font-size: 14px;
        }

        .form-field {
            height: 46px;
            padding: 0 16px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-family: "Rubik", sans-serif;
            outline: 0;
            transition: 0.2s;
            margin-top: 20px;
        }

        .form-field:focus {
            border-color: #0f7ef1;
        }

        .form > button {
            padding: 12px 10px;
            border: 0;
            background-color: #0f7ef1;
            border-radius: 3px;
            margin-top: 10px;
            color: #fff;
            letter-spacing: 1px;
            font-family: "Rubik", sans-serif;
        }

        .animation {
            -webkit-animation-name: move;
            animation-name: move;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            -webki.........完整代码请登录后点击上方下载按钮下载查看

网友评论0