-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
34 lines (33 loc) · 1.05 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
---
layout: default
title: 404
description:
permalink: /404.html
---
<section class="half-vh flex center">
<div class="inner">
<style media="screen">
#portal {
animation: slow 145s infinite; /* IE 10+, Fx 29+ */
}
#portal {
-webkit-animation: slow 145s infinite;
animation: slow 145s infinite; /* IE 10+, Fx 29+ */
}
@-webkit-keyframes slow {
0% { transform: translate(0px,600px); }
20% { transform: translate(600px,0px); }
80% { transform: translate(600px,0px); }
100% { transform: translate(0px,600px); }
}
@-webkit-keyframes slow {
0% { -webkit-transform: translate(0px,600px); transform: translate(0px,600px); }
20% { -webkit-transform: translate(600px,0px); transform: translate(600px,0px); }
80% { -webkit-transform: translate(600px,0px); transform: translate(600px,0px); }
100% { -webkit-transform: translate(0px,600px); transform: translate(0px,600px); }
}
</style>
{% include 404.html%}
<h3 class="transform">Het ziet er naar uit dat deze pagina verloren in space is.</h3>
</div>
</section>