Commit 9e23147f authored by Elminster2031's avatar Elminster2031 Committed by Jean-Baptiste Kempf

Web intf: new CSS and images for the updated interface

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent cb8cd775
root {
display: block;
}
body{
}
#mainContainer{
text-align: center;
width: 800px;
}
#controlContainer{
float: left;
width: 800px;
}
#libraryContainer{
width: 300px;
float: left;
}
#libraryTree{
height: 477px;
overflow:scroll;
white-space: nowrap;
text-align: left;
}
#viewContainer{
width: 500px;
float: left;
}
#mediaViewer{
min-height: 500px;
}
#player{
height: 500px;
width: 500px;
}
#seekSlider{
width: 90%;
}
#volumeSlider{
width: 100px;
display: inline-block;
margin-bottom: 20px;
}
#currentVolume{
display: inline-block;
margin-left: -70px;
}
#mediaTitle{
text-align: left;
}
#currentTime{
text-align: left;
}
#totalTime{
text-align: right;
}
#controlButtons{
text-align: left;
}
.button48{
width: 48px;
height: 48px;
margin: 5px 0px 5px 2px;
background: none;
border: none;
display: inline-block;
cursor: pointer;
}
.button{
cursor: pointer;
display: inline-block;
}
#buttonOpen{
background-image: url("../images/button_eject-48.png");
}
#buttonStop{
background-image: url("../images/button_stop-48.png");
}
#buttonPlay{
background-image: url("../images/button_play-48.png") ;
}
#buttonPause{
background-image: url("../images/button_pause-48.png") ;
}
#buttonPrev{
background-image: url("../images/button_first-48.png") ;
}
#buttonNext{
background-image: url("../images/button_last-48.png") ;
}
#buttonFull{
background-image: url("../images/button_full-48.png") ;
}
#buttonSout{
background-image: url("../images/button_stream-48.png") ;
}
#window_browse ol{
list-style-type: none;
}
#window_browse ol li{
list-style-type: none;
float: left;
padding: 5px;
}
.system_icon{
width:80px;
text-align:center;
vertical-align:top;
display: inline-block;
cursor: pointer;
padding: 2px;
border: 1px solid #823D0A;
margin: 2px;
height: 92px;
background-color: #E1E1E1;
overflow: hidden;
}
#window_create_stream table tr td{
font-size: 11px;
}
.footer{
text-align: center;
font-size: 11px;
}
\ No newline at end of file
function format_time( s ){
var hours = Math.floor(s/3600);
var minutes = Math.floor((s/60)%60);
var seconds = Math.floor(s%60);
hours = hours<10 ? "0"+hours : hours;
minutes = minutes<10 ? "0"+minutes : minutes;
seconds = seconds<10 ? "0"+seconds : seconds;
return hours+":"+minutes+":"+seconds;
}
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment