-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
120 lines (109 loc) · 3.31 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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">
<link rel="shortcut icon" href="https://static.yiy.tw/media/logo/birthday_by_iamnjlu.jpg" type="images/x-icon">
<title>Oops!</title>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
}
#notfound {
position: relative;
height: 100vh;
}
#notfound .notfound {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.notfound {
max-width: 767px;
width: 100%;
line-height: 1.4;
padding: 0px 15px;
}
.notfound .notfound-404 {
position: relative;
height: 150px;
line-height: 150px;
margin-bottom: 25px;
}
.notfound .notfound-404 h1 {
font-family: 'Titillium Web', sans-serif;
font-size: 186px;
font-weight: 900;
margin: 0px;
text-transform: uppercase;
background: url('https://static.yiy.tw/media/assect/text.png');
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: cover;
background-position: center;
}
.notfound h2 {
font-family: 'Roboto', sans-serif;
font-size: 26px;
font-weight: 700;
margin: 0;
}
.notfound p {
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 500;
margin-bottom: 0px;
text-transform: uppercase;
}
.notfound a {
font-family: 'Roboto', sans-serif;
display: inline-block;
text-transform: uppercase;
color: #fff;
text-decoration: none;
border: none;
background: #5c91fe;
padding: 10px 40px;
font-size: 14px;
font-weight: 700;
border-radius: 1px;
margin-top: 15px;
-webkit-transition: 0.2s all;
transition: 0.2s all;
}
.notfound a:hover {
opacity: 0.8;
}
@media only screen and (max-width: 767px) {
.notfound .notfound-404 {
height: 110px;
line-height: 110px;
}
.notfound .notfound-404 h1 {
font-size: 120px;
}
}
</style>
</head>
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>404</h1>
</div>
<h2>OOPS! WE CAN'T FIND THIS PAGE!</h2>
<p>Sorry, This page is unavailable.</p>
<a href="/">Back to Home</a>
</div>
</div>
</html>