diff options
author | Alib <aliboba@free.fr> | 2010-03-24 13:10:01 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-24 13:10:01 +0100 |
commit | 9a1a60cd639222e20564eef754d69abfdc761e20 (patch) | |
tree | eb8fde00856d6f34905cd23776cfc3a6d85424ac | |
parent | 119ba65e5436128d3ee68cc1679c133b2b854a6f (diff) | |
download | istreamdev-9a1a60cd639222e20564eef754d69abfdc761e20.tar.gz istreamdev-9a1a60cd639222e20564eef754d69abfdc761e20.tar.bz2 |
template for What's Now epg
-rw-r--r-- | css/istreamdev.css | 21 | ||||
-rw-r--r-- | css/theme.css | 2 | ||||
-rw-r--r-- | index.php | 42 |
3 files changed, 37 insertions, 28 deletions
diff --git a/css/istreamdev.css b/css/istreamdev.css index a2995ef..0304bbc 100644 --- a/css/istreamdev.css +++ b/css/istreamdev.css @@ -335,4 +335,23 @@ top: 12px; left: 5px; font-size: 14px; } - +ul.edgetoedge span.epgname { +padding-top: 0px; +padding-right: 10px; +padding-left: 10px; +font-size: 17px; +font-weight: bold; +display: block; +color: white; +text-shadow: rgba(0,0,0,.8) 0 1px 0; +} +ul.edgetoedge span.epgtime { +padding-top: 0px; +padding-right: 10px; +padding-left: 10px; +font-size: 14px; +font-weight: bold; +display: block; +color: #ccc; +text-shadow: rgba(0,0,0,.8) 0 1px 0; +}
\ No newline at end of file diff --git a/css/theme.css b/css/theme.css index 1e1111f..659f2ac 100644 --- a/css/theme.css +++ b/css/theme.css @@ -441,7 +441,7 @@ div#jqt.landscape .toolbar > h1 { background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.5))); border-bottom: 1px solid #111113; border-top: 1px solid #666; - color: #3e9ac3; + color: #ff8300; font-size: 16px; margin: 1px 0 0 0; padding: 2px 10px; @@ -172,7 +172,7 @@ include ('bin/auth.php'); <div id="edittimer"> <div class="toolbar"> <a href="#" class="back">Back</a> - <a href="#home" id="home_but" class="button slideup">Home</a> + <a href="#home" id="home_but" class="button">Home</a> <h1></h1> </div> <form name="timer" id="timer" action="#"> @@ -230,34 +230,24 @@ include ('bin/auth.php'); </ul> </div> - <div id="on"> + <div id="now"> <div class="toolbar"> <a href="#" class="back">Back</a> - <a href="#home" id="home_but" class="button slideup">Home</a> - <h1>WHAT'S ON</h1> + <a href="#home" id="home_but" class="button">Home</a> + <h1>WHAT'S NOW</h1> </div> - <form name="epg_chanselector" id="epg_chanselector" action=""> - <ul class="rounded"> - <li><span class="timertitle">Select a Channel</span></li> - <li><select id="epg_chan" onchange="epg_selectchan()"> - <optgroup label="NATIONALES & TNT"> - <option value="1">TF1</option> - <option value="2">FRANCE 2</option> - <option value="3">FRANCE 3</option> - <option value="4">FRANCE 4</option> - <option value="5">TV5</option> - <option value="6">M6</option> - </optgroup> - <optgroup label="DIVERTISSEMENT"> - <option value="11">COMEDIE!</option> - <option value="12">13EME RUE</option> - <option value="13">FOX LIFE</option> - </optgroup> - </select> - </li> - </ul> - </form> - + <ul class="edgetoedge"> + <li class="sep">TF1</li> + <li><a href="#"><span class="epgtime">14h00-14h45</span><span class="epgname">Attention à la marche</span></a></li> + <li><a href="#"><span class="epgtime">14h45-15h20</span><span class="epgname">Tournez manège</span></a></li> + <li><a href="#"><span class="epgtime">See more...</span></a></li> + </ul> + <ul class="edgetoedge"> + <li class="sep">FRANCE 2</li> + <li><a href="#"><span class="epgtime">13h55-14h20</span><span class="epgname">Bulletin Météo</span></a></li> + <li><a href="#"><span class="epgtime">14h25-15h30</span><span class="epgname">Envoyé Spécial</span></a></li> + <li><a href="#"><span class="epgtime">See more...</span></a></li> + </ul> </div> <!------------------------------------ /EPG -------------------------------------------> </div> |