-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.html
More file actions
101 lines (87 loc) · 2.03 KB
/
Copy pathshow.html
File metadata and controls
101 lines (87 loc) · 2.03 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
href="https://fastly.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.1.1/svgs/regular/calendar-check.svg">
<title>DailyInfo</title>
</head>
<body>
<section>
<div class="container">
<div class="pic">
<img src='<&p&>'>
</img>
</div>
<h2 class="title">
<&t&>
</h2>
<h3 class="content">
<&c&>
</h3>
</div>
<div id="footer">- © 2022 Thund1R -</div>
</section>
</body>
<style>
/* 下面这三行切勿有任何变动 */
.pic{display:none}
.title{display:none}
.content{display:none}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 50%;
padding-bottom: 60px;
}
@media screen and (max-width: 1200px) {
.container {
width: 90%;
}
}
body {
background: linear-gradient(to bottom right, #0184cf, #77A1D3, #a0eacf);
}
.pic {
margin: 16px 0;
padding: 12px;
background-color: white;
border-radius: 8px;
text-align: center;
font-size: 0;
}
.title {
margin: 16px 0 6px;
color: white;
}
img {
max-width: 100%;
max-height: 100%;
}
.content {
color: white;
}
section {
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
min-height: 100vh;
}
#footer {
position: absolute;
bottom: 0;
text-align: center;
line-height: 60px;
color: white;
font-weight: bold;
width: 100%;
height: 60px;
clear: both;
}
</style>
</html>