-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmissing.html
63 lines (58 loc) · 1.45 KB
/
missing.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
<!DOCTYPE html>
<html lang="en">
<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>error</title>
<style type="text/css">
body {
background-color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
text-align: center;
text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.site-wrapper {
padding-top: 20px;
display: table;
width: 100%;
height: 100%;
}
.site-wrapper-inner {
display: table-cell;
vertical-align: middle;
}
.lead {
font-size: 25px;
font-weight: 200;
}
a {
color: #5cb85c;
text-decoration: none;
}
a:hover,
a:focus {
color: #5bc0de;
}
h1 {
font-weight: 500;
font-size: 70px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<h1 class="cover-heading">Sorry,</h1>
<p class="lead">
but you are looking for something that isn’t here.
</p>
<p class="lead">
<a href="http://gist.nju.edu.cn">take me home</a>
</p>
</div>
</div>
</body>
</html>