-
Notifications
You must be signed in to change notification settings - Fork 27
/
404.html
71 lines (62 loc) · 1.03 KB
/
404.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
<style lang=scss scoped>
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #4a4a4a;
}
.content {
font-family: 'Avenir-Next', Avenir, Helvetica, sans-serif;
background-color: none;
z-index: 2;
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
transform: translateY(-50%);
padding: 0 10px;
}
h1 {
font-size: 120px;
margin-bottom: 0;
margin-top: 0;
}
h2 {
margin-top: 0;
font-size: 30px;
}
p {
padding-bottom: 32px;
}
img {
width: 5em;
height: auto;
}
@media only screen and (max-width: 480px) {
h1 {
font-size: 120px;
}
}
</style>
<div class='container'>
<div class='row'>
<div class='content'>
<img src="http://vtaiwan.tw/vTaiwan_logo_2017.png" alt="logo">
<h1>Error 404</h1>
<h2>Oops, the page you're looking for does not exist.</h2>
<p>
You may want to head back to the <a href="/">homepage</a>.
</p>
</div>
</div>
</div>