-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (42 loc) · 1.12 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
<!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">
<title>Redirecting to new RxJS docs...</title>
<style>
body {
font-family: Roboto, Arial, Helvetica, sans-serif
}
body {
text-align: center;
padding: 100px 0 0 0;
color: #fff;
background: #1d1f20;
}
#loading {
-webkit-animation: rotation 2s linear;
-webkit-transform: rotate(269deg) scale(3);
}
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg) scale(0.1);
}
to {
-webkit-transform: rotate(269deg) scale(3);
}
}
</style>
</head>
<body>
<img src="rxjs.png" id="loading" />
<div style="position: absolute; z-index: 100; top: 0; left: 50%; width: 500px; margin-left: -250px;">
<h1>RxJS the way of the future.</h1>
<p>examples in slim supply.</p>
<p>until now!,
<a href="main_landing_page.html" style="font-weight: bold; color: lightcyan">click here</a>
</div>
</p>
</body>
</html>