-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
119 lines (110 loc) · 3.32 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
115
116
117
118
119
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>Online skórování ultimate frisbee</title>
<style type="text/css">
/**
* Example of an initial loading indicator.
* It is recommended to keep this as minimal as possible to provide instant feedback
* while other resources are still being loaded for the first time
*/
html, body {
height: 100%;
background:url("resources/loading/pattern.png") repeat #7F8C43;
}
#appLoadingIndicatorFooter {
font-size:0.7em;
position: absolute;
bottom:3%;
width:100%;
height:20%;
text-align: center;
}
#appLoadingIndicatorHeader {
position: absolute;
top:5%;
width:100%;
height:50%;
text-align: center;
}
#appLoadingIndicatorHeader h1 {
font-size:200%;
color:#fff;
font-weight: bold;
margin:0px;
margin-bottom:2%;
}
#appLoadingIndicatorHeader img {
width:50%;
max-width:180px;
width:auto;
}
.pozadi {
margin:auto;
width:70%;
min-width:250px;
background:rgba(255,255,255,0.5);
border-radius:10px;
padding:1em 0;
-webkit-border-radius: 10px;
}
#appLoadingIndicatorProgress {
position: absolute;
top: 64%;
text-align: center;
width: 100%;
height: 30px;
-webkit-animation-name: appLoadingIndicator;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: linear;
}
#appLoadingIndicatorProgress > * {
background-color: #FFFFFF;
display: inline-block;
height: 30px;
-webkit-border-radius: 15px;
margin: 0 5px;
width: 30px;
opacity: 0.8;
}
@-webkit-keyframes appLoadingIndicator{
0% {
opacity: 0.8
}
50% {
opacity: 0
}
100% {
opacity: 0.8
}
}
</style>
<!-- The line below must be kept intact for Sencha Command to build your application -->
<script id="microloader" type="text/javascript" src=".sencha/app/microloader/development.js"></script>
</head>
<body>
<div id="appLoadingIndicator">
<div id="appLoadingIndicatorHeader">
<h1>Catcher</h1>
<div class="pozadi">
<img src="resources/loading/logo.png" />
</div>
</div>
<div id="appLoadingIndicatorFooter">
<div class="pozadi">
verze 1.2.2<br />
Online výsledky: <strong>http://www.frisbee.cz</strong> <br />
Vyvinuto v TM © 2014
<div class="cleaner"></div>
</div>
</div>
<div id="appLoadingIndicatorProgress">
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
</html>