<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Page</title> <style> /* Resetting default styles */ body, html { margin: 0; padding: 0; } /* Applying your global CSS styles */ body { background: url('images/body_bg.jpg') top center fixed; font-size: 14px; font-family: Arial, sans-serif; } a { text-decoration: none; color: #b94648; } #login_box { width: 20%; height: 400px; background-color: rgba(0, 0, 0, 0.6); margin: auto; margin-top: 10%; text-align: center; border-radius: 10px; padding: 50px; } h2 { color: rgba(255, 255, 255, 0.9); margin-top: 5%; font-size: 22px; } #input_box { margin-top: 5%; } input { width: 60%; font-size: 15px; color: #fff; background: transparent; border: none; border-bottom: 2px solid #fff; padding: 5px 10px; outline: none; margin-top: 10px; } button { width: 60%; height: 30px; border-radius: 10px; border: none; color: #fff; text-align: center; line-height: 30px; font-size: 15px; background-image: linear-gradient(to right, #30cfd0, #330867); margin-top: 30px; cursor: pointer; } </style> </head> <body> <div id="login_box"> <h2>LOGIN</h2> <div id="input_box"> <input type="text" placeholder="请输入用户名"> </div> <div id="input_box"> <input type="password" placeholder="请输入密码"> </div> <button>登录</button> </div> </body> </html>
标签:web,--,border,前端,color,font,margin,top,size From: https://www.cnblogs.com/muzhaodi/p/18151382