css实现透明水滴登录注册表单页面代码
代码语言:html
所属分类:布局界面
代码描述:css实现透明水滴登录注册表单页面代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> @import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #eff0f4; } .container{ position: relative; left: -80px; display: flex; justify-content: center; align-items: center; } .container .drop{ position: relative; width: 350px; height: 350px; box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),25px 35px 20px rgba(0,0,0,0.05),25px 30px 30px rgba(0,0,0,0.05), inset -20px -20px 25px rgba(255,255,255,0.9); transition: 0.5s; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0