-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path404.html
101 lines (85 loc) · 2.68 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
<link rel="stylesheet" href="css/404.css">
<script src="/js/main.js" type="module"></script>
<link rel="stylesheet" href="/css/main.css">
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<title>404</title>
</head>
<body>
<div id="container">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 200 82.7" style="enable-background:new 0 0 200 82.7;" xml:space="preserve">
<g id="Calque_1">
<text id="XMLID_3_" transform="matrix(1.2187 0 0 1 13 75.6393)" class="st0 st1">4</text>
<text id="XMLID_4_" transform="matrix(1.2187 0 0 1 133.0003 73.6393)" class="st0 st1">4</text>
</g>
<g id="Calque_2">
<g>
<path id="XMLID_11_" d="M81.8,29.2c4.1-5.7,10.7-9.4,18.3-9.4c6.3,0,12.1,2.7,16.1,6.9c0.6-0.4,1.1-0.7,1.7-1.1
c-4.4-4.8-10.8-7.9-17.8-7.9c-8.3,0-15.6,4.2-20,10.6C80.7,28.5,81.3,28.8,81.8,29.2z"/>
<path id="XMLID_2_" d="M118.1,53.7c-4,5.7-10.7,9.5-18.2,9.5c-6.3,0-12.1-2.6-16.2-6.8c-0.6,0.4-1.1,0.7-1.7,1.1
c4.4,4.8,10.8,7.8,17.9,7.8c8.3,0,15.6-4.3,19.9-10.7C119.2,54.5,118.6,54.1,118.1,53.7z"/>
<animateTransform attributeName="transform" type="rotate" from="360 100 41.3" to="0 100 41.3" dur="10s" repeatCount="indefinite" />
</g>
<g id="XMLID_6_">
<g id="XMLID_18_">
<circle class="circle" cx="100" cy="41" r="1"></circle>
</g>
</g><defs>
<filter id="blurFilter4" x="-20" y="-20" width="200" height="200">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
</defs>
<path id="XMLID_5_" class="st2" d="M103.8,16.7c0.1,0.3,0.1,0.6,0.1,0.9c11.6,1.9,20.4,11.9,20.4,24.1c0,13.5-10.9,24.4-24.4,24.4
S75.6,55.1,75.6,41.7c0-3.2,0.6-6.3,1.7-9.1c-0.3-0.2-0.5-0.3-0.7-0.5c-1.2,3-1.9,6.2-1.9,9.6c0,14,11.3,25.3,25.3,25.3
s25.3-11.3,25.3-25.3C125.3,29,115.9,18.5,103.8,16.7z"/>
</g>
</svg>
<div class="message">
Page not found
</div>
</div>
</body>
</html>
<style>
body{
background:black;
}
.navbar {
position: sticky;
top: 0;
right: 0;
display: flex;
justify-content: space-between;
margin: 1.5vh;
}
.navbar > .title > img {
width: 55px;
border-radius: 10px;
}
.navbar > .title > span {
font-family: 'Lato-Black';
font-size: 30px;
margin-left: 13px;
position: relative;
bottom: 2vh;
color: white;
}
.navbar > .end {
display: flex;
justify-content: space-between;
}
.navbar > .end > a {
margin: 0.5rem;
padding: 0.3rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
cursor: pointer;
font-size: 3vh;
transition: color 0.3s ease-in-out;
color: white;
}
</style>