72 lines
1.4 KiB
HTML
72 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.main {
|
|
width: 490px;
|
|
height: 450px;
|
|
border-radius: 4px;
|
|
border: 1px solid #d3d3d3;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.main img {
|
|
width: 100%;
|
|
height: 100%p;
|
|
}
|
|
|
|
.main h1 {
|
|
margin: 32px auto 4px;
|
|
font-size: 34px;
|
|
font-weight: 500;
|
|
color: #121212;
|
|
}
|
|
|
|
|
|
.main p {
|
|
margin: 4px auto 36px;
|
|
font-size: 22px;
|
|
color: #444;
|
|
}
|
|
|
|
.logo {
|
|
width: 350px;
|
|
height: 36px;
|
|
background-color: #06f;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
border-radius: 3px;
|
|
border: 1px solid #06f;
|
|
line-height: 36px;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<img src="https://static.zhihu.com/heifetz/assets/loginBackgroundImg.2c81e205.png" alt="">
|
|
<h1>登录一下</h1>
|
|
<p>更多精彩内容等你发现</p>
|
|
<div class="logo">登录</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |