This repository has been archived by the owner on Apr 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (99 loc) · 2.46 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="refresh" content="5; URL=https://vberlier.github.io/animated-models/">
<title>Redirecting...</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
font-family: arial, sans-serif;
font-size: 16px;
line-height: 1.6;
position: absolute;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: #888;
box-sizing: border-box;
overflow: hidden;
background: rgba(250,250,250,1);
line-height: 1.7em;
}
main {
position: relative;
width: 480px;
height: 260px;
margin: auto;
background-color: #fff;
padding: 30px;
color: #888;
box-shadow: 0px 1px 8px -2px rgba(0,0,0,0.4);
}
h1 {
font-size: 1.3em;
font-weight: normal;
margin-bottom: 1.6em;
}
a {
color: #4996c7;
display: inline-block;
text-decoration: none;
-webkit-transition: color 0.16s ease-out;
-o-transition: color 0.16s ease-out;
transition: color 0.16s ease-out;
cursor: pointer;
}
a:hover {
color: #1d519f;
}
.spinner {
float: right;
position: relative;
width: 1em;
height: 1em;
border: 4px transparent solid;
font-size: 0.9em;
}
.spinner::before, .spinner::after {
content: ' ';
position: absolute;
display: block;
top: -4px;
left: -4px;
width: 1em;
height: 1em;
border: 4px transparent solid;
border-right-color: #aaa;
border-radius: 50%;
animation: spin 0.6s linear infinite;
}
.spinner::before {
border-right-color: #ddd;
border-bottom-color: #ddd;
border-left-color: #ddd;
animation: spin 1.2s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<main>
<h1>Redirecting... <span class="spinner"></span></h1>
<p>
The URL of the model animator has changed. You should be redirected in a few seconds. You can also click on the new link manually.
</p>
<p>
<a href="https://vberlier.github.io/animated-models/">https://vberlier.github.io/animated-models/</a>
</p>
</main>
</body>
</html>