-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (72 loc) · 2.45 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
<!DOCTYPE HTML>
<!--suppress ALL -->
<html manifest="">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
<title>FSS</title>
<link rel="manifest" href="manifest.json"/>
<script>
var FSS = FSS || {};
</script>
<!-- The line below must be kept intact for Sencha Cmd to build your application -->
<script id="microloader" data-app="e808b5ad-3dda-4ef0-b612-65086b013d16" type="text/javascript" src="bootstrap.js"></script>
<style type="text/css">
.pulse-logo, .pulse-circle {
position: absolute;
margin: auto;
display: block;
}
.pulse-logo {
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer;
background-image: url(/resources/images/FSS_logo.svg);
background-repeat: no-repeat;
background-size: 100px;
background-position: center;
background-color: rgba(255, 255, 255, 0.3);
}
.pulse-circle {
z-index: 2;
width: 30px;
height: 30px;
border-radius: 50%;
box-shadow: 0 0 0 rgba(204, 169, 44, 1);
animation: pulse-circle 1.5s infinite;
top: calc(50% - 15px);
left: calc(50% - 15px);
}
@-webkit-keyframes pulse-circle {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
}
70% {
-webkit-box-shadow: 0 0 0 100px rgba(204, 169, 44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
}
}
@keyframes pulse-circle {
0% {
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 100px rgba(204, 169, 44, 0);
box-shadow: 0 0 0 100px rgba(204, 169, 44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
}
}
</style>
</head>
<body>
<div class="pulse-logo" id="pulse-logo"><div class="pulse-circle"></div></div>
</body>
</html>