-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (67 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Status Menu | FastGit UK</title>
<style type="text/css">
body {
background-color: rgb(31, 103, 179);
color: #FFFFFF;
font-family: "Segoe UI", "Arial", "Microsoft Yahei", Helvetica, sans-serif;
margin-left: 100px;
padding: 90px 0;
}
.face {
font-size: 100px;
}
p {
font-size: 24px;
padding-top: 8px;
}
a {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
color: #FFFFFF;
}
.tips {
font-size: 16px
}
@media screen and (max-width: 600px) {
body {
margin: 0 10px;
}
p {
font-size: 18px;
line-height: 30px;
}
.tips {
display: inline-block;
padding-top: 10px;
font-size: 14px;
line-height: 20px;
}
}
</style>
</head>
<body>
<span class="face">:)</span>
<p>Hello! Till now, FastGit's status monitors are implemented by 2 ways. Please choose one:<br>
<p>
<a href="https://stats.uptimerobot.com/g7zoWclBN0">UptimeBot</a>
<br>
<a href="https://fastgitorg.github.io/status/">UptimeBot (Page)</a>
<br>
<a href="https://github.com/FastGitORG/uptime">Upptime (Repository)</a>
<br>
<a href="https://fastgitorg.github.io/uptime/">Upptime (Page)</a>
<br>
<a href="https://fastgit.org/">Back home</a>
</p>
<span class="tips">If you'd like to know more, you can search online later for this message: HTTP CODE 418 I'M A TEAPOT</span>
</p>
</body>
</html>