-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (120 loc) · 3.23 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Never Mind the Scandal and Liber</title>
<meta name="viewport" content="width=device-width, initial-scale=0.9">
<link rel="stylesheet" type="text/css" href="./fonts.css" />
<style>
:root {
--main-dark-1:#22272e;
--main-dark-2:#2d333b;
--main-dark-3:#313a46;
--main-dark-4:#343d48;
--main-dark-5:#404c5a;
--main-dark-6:#4b5b6d;
--main-dark-8:#6d7986;
--main-dark-7:#467bc3;
--main-white-1:#fff;
--main-white-2:#adbac7;
}
body {
background-color:var(--main-dark-1);
height:100vh;
overflow:hidden;
}
.warp {
width:800px;
height:100%;
margin:0 auto;
display:flex;
flex-flow:column;
justify-content:center;
padding:30px;
}
.user-warp {
background-color:var(--main-dark-4);
display:flex;
flex-flow:column;
justify-content:center;
align-items:center;
padding:20px 30px;
margin-bottom:20px;
}
.user-warp p {
color:var(--main-white-2)
}
.user-warp img {
width:70px;
border-radius:100%;
}
.pay-warp {
background-color:var(--main-dark-3);
padding:50px 0;
border-radius:5px;
}
.qr-warp {
display:flex;
justify-content:space-evenly;
width:500px;
margin:0 auto;
align-items:center;
}
.qr-warp .qr {
display:flex;
flex-flow:column;
justify-content:center;
align-items:center;
}
.qr-warp .qr img {
width:200px;
}
.qr-warp .qr span {
margin-top:20px;
color:var(--main-white-2);
''
}
@media(max-width:800px) {
.warp {
width:auto;
}
.pay-warp {
}
}
@media(max-width:550px) {
body{
height: 100%;
overflow: auto;
}
.qr-warp {
flex-flow:column;
width:auto;
height:500px;
}
.qr-warp .qr{
margin-bottom: 30px;
}
}
</style>
</head>
<body>
<div class="warp">
<div class="user-warp">
<img src="./nmsl.gif" alt="nmsl.gif">
<p class="font-hei">大哥哥大姐们啊!你们都是有钱的人呐~谁有那多余的零钱?给我这流浪的人啊...</p>
</div>
<div class="pay-warp">
<div class="qr-warp">
<div class="qr">
<img src="./wechat.gif" alt="Wechat Pay">
<span>微信扫码</span>
</div>
<div class="qr">
<img src="./alipay.gif" alt="Alipay">
<span>支付宝扫码</span>
</div>
</div>
</div>
</div>
</body>
</html>