404.vue
843 Bytes
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
<template>
<div class="error-container">
<h1>404</h1>
<p>
<strong>File not found</strong>
</p>
<p>The site configured at this address does not contain the requested file.</p>
<p>
<router-link to="/" class="back-link">Back to Home</router-link>
</p>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
.error-container {
margin: 50px auto 40px auto;
width: 600px;
text-align: center;
}
h1 {
width: 800px;
position: relative;
left: -100px;
letter-spacing: -1px;
line-height: 60px;
font-size: 60px;
font-weight: 100;
margin: 0 0 50px 0;
text-shadow: 0 1px 0 #fff;
}
p {
color: rgba(0, 0, 0, 0.5);
margin: 20px 0;
line-height: 1.6;
}
.back-link {
color: #3BB8FF;
text-decoration: none;
}
</style>