-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
203 lines (175 loc) · 4.73 KB
/
index.html
File metadata and controls
203 lines (175 loc) · 4.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>那样记账 - 纯粹的记账软件</title>
<meta property="og:title" content="那样记账 - 纯粹的记账软件" />
<meta property="og:locale" content="zh_CN" />
<meta name="description" content="一款面向个人、纯粹的记账软件。" />
<meta property="og:description" content="一款面向个人、纯粹的记账软件。" />
<meta property="og:url" content="https://wallet.bakumon.me/" />
<meta property="og:site_name" content="那样记账 - 纯粹的记账软件" />
<script
type="application/ld+json"> {"description":"一款面向个人、纯粹的记账软件。","@type":"WebSite","url":"https://wallet.bakumon.me/","name":"那样记账 - 纯粹的记账软件","headline":"那样记账 - 纯粹的记账软件","@context":"https://schema.org"}</script>
<meta property="og:image" content="https://i.loli.net/2021/10/09/CyTplVHqNgszdAu.png" />
<meta property="og:image:width" content="1090" />
<meta property="og:image:height" content="570" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<style>
body {
background: linear-gradient(90deg, #c2daf0 0%, #eae6fa 100%);
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
.header {
max-width: 1200px;
margin: 0 auto;
padding: 60px 15px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
@media screen and (max-width: 768px) {
.header {
justify-content: center;
}
}
.logo {
width: 50px;
}
@media screen and (max-width: 768px) {
.logo {
margin-bottom: 0px;
}
}
.nav ul {
display: flex;
flex-wrap: wrap;
list-style: none;
}
.nav a {
font-size: 16px;
line-height: 19px;
color: #8C8E9E;
padding: 0px 32px;
transition: 150ms;
text-decoration: none;
}
.nav a:hover {
color: #9576fc;
}
.summary {
padding: 60px 15px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.summary {
flex-direction: column;
padding: 15px 15px;
text-align: center;
}
}
.app-info h1 {
font-size: 60px;
color: #060C3A;
margin-bottom: 30px;
}
.app-info span {
font-size: 54px;
}
@media screen and (max-width: 768px) {
.app-info h1 {
font-size: 45px;
margin-bottom: 10px;
}
.app-info span {
font-size: 40px;
}
}
.app-info p {
font-size: 20px;
font-weight: bold;
color: #8C8E9E;
max-width: 379px;
line-height: 36px;
margin-bottom: 36px;
max-width: 500px;
margin: 0 auto;
margin-bottom: 60px;
}
.download {
display: flex;
align-items: center;
justify-items: center;
color: #8C8E9E;
}
.google-play {
height: 60px;
margin-right: 10px;
}
.apk {
padding: 19px 30px;
background: #000000;
border-radius: 6px;
color: #fff;
font-weight: 600;
margin-left: 10px;
text-decoration: none;
}
.screenshot {
width: 500px;
}
.screenshot img {
display: block;
max-width: 100%;
}
@media screen and (max-width: 768px) {
.screenshot {
width: 100%;
margin: 0 auto;
padding: 40px 0px;
}
}
</style>
</head>
<body>
<div class="header">
<div>
<img class="logo" src="img/logo.png" alt="Logo">
</div>
<nav class="nav">
<ul>
<li><a href="changelog.html">更新记录</a></li>
</ul>
</nav>
</div>
<div class="summary">
<div class="app-info">
<h1>那样记账
<br /><span>- 纯粹的记账软件</span>
</h1>
<p>一款面向个人、纯粹的记账软件。</p>
<div class="download">
<a href="https://play.google.com/store/apps/details?id=me.bakumon.moneykeeper"><img class="google-play" src="img/google-play-badge.svg"></a>
或
<a class="apk" href="https://www.coolapk.com/apk/me.bakumon.moneykeeper">酷安下载</a>
</div>
</div>
<div class="screenshot">
<img src="img/screent.png" alt="Screenshot">
</div>
</div>
</body>
</html>