1
0
mirror of https://github.com/moparisthebest/rcrdit synced 2024-10-31 15:25:12 -04:00
rcrdit/src/main/webapp/index.html

132 lines
3.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<!--
~ rcrdit records TV programs from TV tuners
~ Copyright (C) 2017 Travis Burtrum
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero General Public License as
~ published by the Free Software Foundation, either version 3 of the
~ License, or (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Rcrdit</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/rcrdit.js"></script>
<style>
* {
box-sizing: border-box;
}
ul {
list-style: none;
padding-left: 0;
overflow: hidden;
display: block;
}
ul, ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul, ol ul, ul ol, ol ol {
margin-bottom: 0;
}
.verticalTimeLine {
width: 0;
border-left: 1px dashed rgba(51,118,178,0.4);
position: absolute;
display: block;
z-index: 1;
}
ul#channelGroups li ul>li {
border-bottom: 1px solid #dbdbdc;
}
p{
margin : 2px;
}
ul#channelGroups li ul li ul li.channel {
background: #fff;
border-bottom: 1px solid #dbdbdc;
border-right: 1px solid #dbdbdc;
border-top: 0;
height: 40px;
padding: 0;
position: relative;
text-align: center;
}
ul#channelGroups li ul li ul li:first-child {
float: left;
}
ul#channelGroups li ul>li {
height: 40px;
margin: 0;
overflow: hidden;
padding: 0;
position: relative;
}
ul#channelGroups li ul li ul li.programs>div {
display: block;
height: 40px;
position: absolute;
}
ul#channelGroups li ul li ul li.programs>div {
background: none #fff;
border-left: 1px solid #dbdbdc;
border-right: 2px solid white;
padding: 5px;
}
ul#channelGroups li ul li ul li.programs {
background: url(../images/tvguide/grid_bg.png) repeat #fff;
display: block;
height: 40px;
overflow: hidden;
position: relative;
width: initial;
}
ul#channelGroups li ul li ul li.channel {
width: 97px;
}
.programSubtitle{
font-size: 8pt;
}
</style>
</head>
<body>
<div id="guideGoesHere" style='width: 100%'>
</div>
</body>
</html>