div+css实现简单黑白登录注册翻转切换表单页面代码

代码语言:html

所属分类:表单美化

代码描述:div+css实现简单黑白登录注册翻转切换表单页面代码

代码标签: div css 简单 黑白 登录 注册 翻转 切换 表单 页面 代码

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

<!DOCTYPE html>
<html>

<head>
    <style>
        body{
              background: black;
              
          }
              .wrapper {
                  margin: 300px auto;
                  width:30px;
          --input-focus: #2d8cf0;
          --font-color: #fefefe;
          --font-color-sub: #7e7e7e;
          --bg-color: #111;
          --bg-color-alt: #7e7e7e;
          --main-color: #fefefe;
        
        }
        /* switch card */
        .switch {
          transform: translateY(-200px);
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 30px;
          width: 50px;
          height: 20px;
        }
        
        .card-side::before {
          position: absolute;
          content: 'Log in';
          left: -70px;
          top: 0;
          width: 100px;
          text-decoration: underline;
          color: var(--font-color);
          font-weight: 600;
        }
        
        .card-side::after {
          position: absolute;
          content: 'Sign up';
          left: 70px;
          top: 0;
          width: 100px;
          text-dec.........完整代码请登录后点击上方下载按钮下载查看

网友评论0