div+css实现暗色手机密码输入解锁效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现暗色手机密码输入解锁效果代码

代码标签: div css 暗色 手机 密码 输入 解锁

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

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
 
  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&amp;display=swap'>
  <style>
      * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: linear-gradient(24deg, #18013c 8%, #8536fb);
    font-family: "Open Sans", sans-serif;
    background-size: 100% 100vh;
    color: #c5c5ff;
}

.box-button {
    width: 186px;
    margin: auto;
    margin-top: 50px;
}

.line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
}

.line:last-child {
    margin-bottom: 0;
}

.button {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    justify-content: center;
    .........完整代码请登录后点击上方下载按钮下载查看

网友评论0