-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.25 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
<!DOCTYPE HTML>
<html>
<head>
<title>TV Recorded</title>
<!--link href='http://fonts.googleapis.com/css?family=Ubuntu|Indie+Flower' rel='stylesheet' type='text/css'-->
<style type="text/css">
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
src: local('Ubuntu'), url('fonts/Ubuntu-Medium.ttf') ;
}
@font-face {
font-family: 'Ubuntu Mono';
font-style: normal;
font-weight: 400;
src: local('Ubuntu Mono'), local('UbunutMono'), url('fonts/UbuntuMono-Regular.ttf');
}
body {
font-family: 'Ubuntu';
color: rgb(255,255,255);
background: rgb(0,5,61); /* Old browsers */
background: -moz-linear-gradient(left, rgba(0,5,61,1) 30%, rgba(0,0,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(30%,rgba(0,5,61,1)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(0,5,61,1) 30%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(0,5,61,1) 30%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(0,5,61,1) 30%,rgba(0,0,0,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(0,5,61,1) 30%,rgba(0,0,0,1) 100%); /* W3C */
}
h1 {
font-family: 'Ubuntu';
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1em;
}
a {
color: rgb(255,255,255);
text-decoration: none;
}
.epg {
font-family: 'Ubuntu Mono';
font-size: 1em;
width:50%;
white-space: pre-wrap;
}
</style>
<script type="text/javascript" src="jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="reclist.js"></script>
</head>
<body>
<div id="content"> </div>
</body>
</html>