This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
114 lines (89 loc) · 2.61 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
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to Aurelia-Toolbelt</title>
<script src="./scripts/polyfills.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.5.1/bluebird.min.js"></script> -->
<link href="./styles/styles.css" rel="stylesheet">
</head>
<body>
<div aurelia-app="main">
<style>
img {
position: absolute;
top: 35%;
left: 50%;
width: 400px;
height: 400px;
margin-top: -200px;
/* Half the height */
margin-left: -200px;
/* Half the width */
}
.spinner {
margin: 550px auto 0;
width: 120px;
text-align: center;
}
.spinner>div {
width: 35px;
height: 35px;
background-color: #7A5098;
border-radius: 100%;
display: inline-block;
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
background-color: #EE4894;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
background-color: #9F4E97;
}
@-webkit-keyframes sk-bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0)
}
40% {
-webkit-transform: scale(1.0)
}
}
@keyframes sk-bouncedelay {
0%,
80%,
100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
</style>
<img src="./logo.png">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<div class="alert alert-danger fixed-bottom text-center">
<span>
<a href="https://twitter.com/AureliaToolbelt?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @AureliaToolbelt</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</span>
</div>
</div>
<script type="text/javascript" charset="utf-8" src="./dist/aurelia-toolbelt.js"></script>
<script type="text/javascript" charset="utf-8" src="./dist/vendor.js"></script>
<script type="text/javascript" charset="utf-8" src="./dist/app.js"></script>
</body>
</html>