-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
106 lines (96 loc) · 2.75 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
100
101
102
103
104
105
106
<!--
Copyright 2020, Verizon Media
Licensed under the terms of the MIT license. See the LICENSE file in the project root for license terms.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-171501636-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-171501636-1');
</script>
<meta charset="utf-8">
<title>Bindable</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta
name="description"
content="Bindable: A themeable design system built in Aurelia JS that allows for faster and easier web development."
>
<link href="favicon.ico?v=2" rel="shortcut icon" type="image/x-icon">
</head>
<body aurelia-app="main">
<div class="splash">
<style>
body{
background: #313131;
}
.splash{
position: absolute;
top: 50%;
left: 50%;
width: 240px;
height: 88px;
margin-top: -44px;
margin-left: -120px;
}
.loader-three-bounce{
width: 80px;
margin: 40px 0 40px 80px;
text-align: center;
}
.loader-three-bounce .ltb__child{
display: inline-block;
width: 15px;
height: 15px;
border-radius: 100%;
background-color: var(--c_white);
-webkit-animation: loader-three-bounce 1.4s ease-in-out 0s infinite both;
animation: loader-three-bounce 1.4s ease-in-out 0s infinite both;
}
.loader-three-bounce .ltb__child--1{
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loader-three-bounce .ltb__child--2{
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes loader-three-bounce{
0%,
80%,
100%{
-webkit-transform: scale(0);
transform: scale(0);
}
40%{
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes loader-three-bounce{
0%,
80%,
100%{
-webkit-transform: scale(0);
transform: scale(0); }
40%{
-webkit-transform: scale(1);
transform: scale(1);
}
}
</style>
<div class="loader-three-bounce">
<div class="ltb__child ltb__child--1"></div>
<div class="ltb__child ltb__child--2"></div>
<div class="ltb__child ltb__child--3"></div>
</div>
</div>
</div>
<script src="scripts/vendor-bundle.js" data-main="aurelia-bootstrapper"></script>
</body>
</html>