forked from edspencer/APOD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (43 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Touch APOD</title>
<link rel="stylesheet" href="touch/resources/css/sencha-touch.css" type="text/css">
<script src='http://src.sencha.io/screen.js'></script>
<script type="text/javascript" src="touch/sencha-touch.js"></script>
<script type="text/javascript" src="app-all.js"></script>
<style type="text/css" media="screen">
body {
background-color: #000;
}
.x-img {
background-position: center;
background-color: #000;
}
.x-carousel-inner {
background-color: #000;
}
.x-carousel-indicator-dark span {
background-color: #eee;
opacity: 0.25;
}
.x-carousel-indicator-dark span.x-carousel-indicator-active {
background-color: #aaa;
opacity: 0.9;
}
.apod-title {
color: #fff;
text-align: center;
padding: 15px 0;
background-color: #000;
opacity: 0;
-webkit-transition: opacity 0.33s ease-out;
}
.apod-title-visible {
opacity: 0.65;
}
</style>
</head>
<body></body>
</html>