| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /* video container */
- .videoContainer{
- width:750px;
- height:430px;
- position:relative;
- overflow:hidden;
- background:#000;
- color:#ccc;
- }
- .control{
- color:#ccc;
- position:absolute;
- bottom:0;
- left:0;
- width:100%;
- z-index:5;
- display:none;
- margin: 0px 8px;
- }
- /* control top part */
- .topControl{
- height:7px;
- background:rgba(255,255,255,0); /* fallback */
-
- }
- /* control bottom part */
- .btmControl{
- clear:both;
- background: #1F1F1F; /* fallback */
- background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
- background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
- background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
- }
- .control div.btn {
- float:left;
- width:34px;
- height:30px;
- padding:0 5px;
- border-right:1px solid #404040;
- cursor:pointer;
- }
- .control div.text{
- font-size:12px;
- font-weight:bold;
- line-height:30px;
- text-align:center;
- font-family:verdana;
- width:20px;
- border:none;
- color:#777;
- }
- /* Progress bar */
- .progress {
- width:85%;
- height:7px;
- position:relative;
- float:left;
- cursor:pointer;
- background: #444; /* fallback */
- background:-moz-linear-gradient(top,#666,#333);
- background:-webkit-linear-gradient(top,#666,#333);
- background:-o-linear-gradient(top,#666,#333);
- box-shadow:0 2px 3px #333 inset;
- -moz-box-shadow:0 2px 3px #333 inset;
- -webkit-box-shadow:0 2px 3px #333 inset;
- border-radius:10px;
- -moz-border-radius:10px;
- -webkit-border-radius:10px;
- }
- .progress span {
- height:100%;
- position:absolute;
- top:0;
- left:0;
- display:block;
- border-radius:5px;
- -moz-border-radius:5px;
- -webkit-border-radius:5px;
- }
- .timeBar{
- z-index:10;
- width:0;
- background: #2d2d2d;
- }
- .bufferBar{
- z-index:5;
- width:0;
- background: #360606;
- box-shadow:2px 0 5px #333;
- -moz-box-shadow:2px 0 5px #333;
- -webkit-box-shadow:2px 0 5px #333;
- }
- /* time and duration */
- /*.time{
- width:30%;
- float:right;
- text-align:center;
- font-size:11px;
- line-height:10px;
- }*/
- /* VOLUME BAR CSS */
- .loading, .init{
- position:absolute;
- top:0;
- left:0;
- width:100%;
- height:100%;
- background:url(../images/loading.gif) no-repeat 50% 50%;
- z-index:2;
- display:none;
- }
- .init{
- background:url(../images/bigplay.png) no-repeat 50% 50% !important;
- cursor:pointer;
- }
|