-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path404page.html
67 lines (48 loc) · 935 Bytes
/
404page.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
<html>
<head>
<style>
body,
html {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: linear-gradient(to bottom, #000066 0%, #0066ff 100%);
font-family: 'Montserrat', sans-serif;
color: #fff;
}
.error {
text-align: center;
padding: 16px;
position: relative;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%)
}
h1 {
margin: -10px 0 -30px;
font-size: calc(17vw + 40px);
opacity: .8;
letter-spacing: -17px;
text-shadow: 5px 5px 10px black;
}
p {
opacity: .8;
font-size: 20px;
margin: 8px 0 38px 0;
font-weight: bold
}
span{
color : #ff9900;
font-size : 90px;
}
</style>
</head>
<body>
<div class="error">
<h1>404<span>.</span></h1>
<p>We're sorry but it looks like the page you are trying to access is unreachable</p>
</div>
</body>
</html>