div+css实现简洁登录注册表单页面代码
代码语言:html
所属分类:表单美化
代码描述:div+css实现简洁登录注册表单页面代码
代码标签: div css 简洁 登录 注册 表单 页面 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" /> <style> body{ background: black; } .form_main { margin: 100px auto; width: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: rgb(255, 255, 255); padding: 30px 30px 30px 30px; box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062); position: relative; overflow: hidden; } .form_main::before { position: absolute; content: ""; width: 300px; height: 300px; background-color: rgb(209, 193, 255); transform: rotate(45deg); left: -180px; bottom: 30px; z-index: 1; border-radius: 30px; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082); } .heading { font-size: 2em; color: #2e2e2e; font-weight: 700; margin: 5px 0 10px 0; z-index: 2; } .inputContainer { width: 100%; position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; } .inputIcon { position: absolute; left: 3px; } .inputField { width: 100%; height: 30px; background-color: transparent; border: none; border-bottom: 2px solid rgb(173, 173, 173); margin: 10px 0; color: black; font-size: .8em; font-weight: 500; box-sizing: border-box; padding-left: 30px; } .inputField:focus { outline: none; border-bottom: 2px solid rgb(199, 114, 255); } .inputField::placeholder { color: rgb(80, 80, 80); font-size: 1em; font-weight: 500; } #button { z-index: 2; position: relative; width: 100%; border: none; background-color: rgb(162, 104, 255); height: 30px; color: white; font-size: .8em; font-weight: 500; letter-spacing: 1px; margin: 10px; cursor: pointer; } #button:hover { background-color: rgb(126, 84, 255); } .forgotLink { z-index: 2; font-size: .7em; font-weight: 500; color: rgb(44, 24, 128); text-decoration: none; padding.........完整代码请登录后点击上方下载按钮下载查看
网友评论0