-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patherror.html
121 lines (103 loc) · 3.15 KB
/
error.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
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Error - Viblo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<style>
body {
margin: 0;
min-height: 100vh;
font-family: 'Lato', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
a {
color: #5488c7;
}
.msg {
display: inline-flex;
align-items: center;
margin: 0 auto;
}
.msg__span {
color: #555;
}
.msg-bye {
color: #777a84;
margin-top: 30px;
}
.contact {
color: #7c8993;
margin-top: 30px;
}
.container {
text-align: center;
padding: 0 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
</style>
<style media="all and (min-width: 992px)">
.msg {
font-size: 50px;
}
.msg__span {
margin-left: 10px;
line-height: 50px;
}
.msg-bye {
font-size: 20px;
}
</style>
<style media="all and (max-width: 992px)">
.msg {
font-size: 30px;
align-items: center;
display: flex;
flex-direction: column;
}
.msg__span {
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="msg">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" viewBox="0 0 16 16">
<path fill="#2eb2eb" d="M8 1c3.9 0 7 3.1 7 7s-3.1 7-7 7-7-3.1-7-7 3.1-7 7-7zM8 0c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8v0z"></path>
<path fill="#2eb2eb" d="M7 6c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z"></path>
<path fill="#2eb2eb" d="M11 6c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z"></path>
<path fill="#2eb2eb" d="M11.3 12.3c-0.7-1.1-2-1.8-3.3-1.8s-2.6 0.7-3.3 1.8l-0.8-0.6c0.9-1.4 2.4-2.2 4.1-2.2s3.2 0.8 4.1 2.2l-0.8 0.6z"></path>
</svg>
<span class="msg__span">Sorry, something broke on our end</span>
</div>
<p class="msg-bye">please try again after a while</p>
<p class="contact">Contact us: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</body>
</html>