-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
84 lines (76 loc) · 1.38 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
---
permalink: /404.html
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>404</title>
<style type="text/css" media="screen">
@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro";
body {
background: #fff;
color: #374e5a;
font: 16px/24px "Source Sans Pro", sans-serif;
text-align: center;
margin: 24px;
/* -webkit-text-size-adjust: none; */
}
#container {
display: table;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#container > div {
display: table-cell;
vertical-align: middle;
}
#container > div > div {
/* width: 480px; */
margin: 0 auto;
}
#wrapper {
display: block;
height: 120px;
width: 120px;
margin: auto;
}
h1 {
display: block;
height: 120px;
width: 120px;
background: #374e5a;
color: #fff;
font: 600 40px/120px "Source Sans Pro", sans-serif;
text-align: center;
margin: 12px 0;
padding: 0;
border-radius: 120px;
animation: tilt 1s ease-out both;
}
@keyframes tilt {
from {
transform: rotate(0deg) scale3d(1, 1, 1);
}
to {
transform: rotate(-15deg) scale3d(1, 1, 1);
}
}
p {
/* text-shadow: #fff 0 1px 1px; */
margin: 12px 0;
}
</style>
</head>
<body>
<div id="container"><div><div>
<div id="wrapper"><h1>404</h1></div>
<p><span class="en">Not found</span><br>
<span lang="fr">Introuvable</span></p>
</div></div></div>
</body>
</html>