forked from ruby-china/homeland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path500.html
76 lines (67 loc) · 1.95 KB
/
500.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>服务访问异常 :(</title>
<style>
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #ddd;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width: 500px;
_width: 500px;
padding: 30px 20px 50px;
background-color: white;
margin: 40px auto;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 0px 2px rgba(0,0,0,0.1);
box-shadow: 0 0px 2px rgba(0, 0, 0, 0.05);
}
h1 {
margin: 0 10px;
font-size: 50px;
text-align: center;
}
h1 span {
color: #bbb;
}
h3 {
margin: 1.5em 0 0.5em;
}
p {
margin: 1em 0;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
.container {
max-width: 380px;
_width: 380px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<h1>服务访问异常 <span>:(</span></h1>
<p>对不起,由于某些原因导致功能异常,请稍后再试。</p>
<div class="links">
<a href="/">回到首页</a>
</div>
</div>
</body>
</html>