forked from vicanso/pingap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
64 lines (64 loc) · 1.7 KB
/
error.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
</head>
<style>
* {
margin: 0;
padding: 0;
}
.pingap-header {
background-color: rgba(255, 255, 255, 0.6);
border-bottom: 1px solid rgba(228, 228, 231, 0.4);
padding: 15px;
line-height: 24px;
}
.pingap-header-content {
max-width: 1000px;
margin: auto;
}
.pingap-logo {
color: rgb(9, 9, 11);
font-weight: bolder;
font-size: 24px;
}
.pingap-version {
font-size: 16px;
}
.pingap-error {
margin: 15px;
text-align: center;
font-size: 18px;
line-height: 24px;
}
@media (prefers-color-scheme: dark) {
html,
body {
background-color: rgb(9, 9, 11);
}
.pingap-header {
background-color: rgba(9, 9, 11, 0.6);
border-bottom-color: rgba(39, 39, 42, 0.4);
}
.pingap-logo {
color: rgb(250, 250, 250);
}
.pingap-error {
color: rgb(250, 250, 250);
}
}
</style>
<body>
<header class="pingap-header">
<div class="pingap-header-content">
<span class="pingap-logo"
>Pingap
<span class="pingap-version">{{version}}</span></span
>
</div>
</header>
<p class="pingap-error">{{error_ype}}</p>
<p class="pingap-error">{{content}}</p>
</body>
</html>