-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (86 loc) · 2.77 KB
/
index.html
File metadata and controls
89 lines (86 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub 个人主页访问量计数器</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background-color: #f9f9fa;
}
h1 {
margin-top: 0;
color: #1890ff;
font-size: 24px;
font-weight: 500;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 15px;
margin-bottom: 25px;
}
p {
margin-bottom: 15px;
font-size: 16px;
}
.preview {
margin: 20px 0;
padding: 15px;
background: #fff;
border: 1px solid #e8e8e8;
border-radius: 4px;
text-align: center;
}
.preview img {
display: inline-block;
}
.code {
background: #f5f5f5;
padding: 12px 15px;
border-radius: 4px;
font-family: Consolas, Monaco, "Andale Mono", monospace;
font-size: 14px;
margin: 15px 0;
word-break: break-all;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
font-size: 14px;
color: #888;
}
a {
color: #1890ff;
text-decoration: none;
}
a:hover {
color: #40a9ff;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>GitHub 个人主页访问量计数器</h1>
<p>当你看到这段话的时候,说明你的个人主页访问量计数器已经部署成功了!</p>
<div class="preview">
<img src="/github/count.svg" alt="profile views badge">
</div>
<p>使用方法:将以下代码添加到你的 GitHub Profile README 中</p>
<div class="code"></div>
<p>记得将 <code>your-domain</code> 替换为你的域名,<code>username</code> 替换为你的 GitHub 用户名。</p>
<div class="footer">
<p>
Author: <a href="https://github.com/luoy-oss" target="_blank">luoy-oss</a>
<br>
GitHub: <a href="https://github.com/luoy-oss/github-profile-views-counter" target="_blank">github-profile-views-counter</a>
<br>
Blog: <a href="https://www.drluo.top" target="_blank">drluo.top</a>
</p>
</div>
</body>
</html>