OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Media Player</title> | 5 <title>Media Player</title> |
6 <style type="text/css"> | 6 <style type="text/css"> |
7 | 7 |
8 body { | 8 body { |
9 overflow: hidden; | 9 overflow: hidden; |
10 background: black; | 10 background: black; |
(...skipping 20 matching lines...) Expand all Loading... |
31 .audiotitle { | 31 .audiotitle { |
32 left: 0; | 32 left: 0; |
33 right: 0; | 33 right: 0; |
34 text-align: center; | 34 text-align: center; |
35 position: absolute; | 35 position: absolute; |
36 color: white; | 36 color: white; |
37 top: 100px; | 37 top: 100px; |
38 } | 38 } |
39 | 39 |
40 .progress { | 40 .progress { |
41 -webkit-appearance: sliderthumb-horizontal; | 41 -webkit-appearance: none; |
42 position: absolute; | 42 position: absolute; |
43 background: transparent; | 43 background: transparent; |
44 left: 93px; | 44 left: 93px; |
45 right: 120px; | 45 right: 120px; |
46 bottom: -2px; | 46 bottom: -2px; |
47 height: 30px; | 47 height: 30px; |
48 z-index: 99999; | 48 z-index: 99999; |
49 border-left: 1px solid #424242; | 49 border-left: 1px solid #424242; |
50 } | 50 } |
51 | 51 |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
863 <body onload='load();' onselectstart='return false'> | 863 <body onload='load();' onselectstart='return false'> |
864 <div id='error' class='error'></div> | 864 <div id='error' class='error'></div> |
865 <div id='title' class='audiotitle'></div> | 865 <div id='title' class='audiotitle'></div> |
866 <div id='glow' class='glow'></div> | 866 <div id='glow' class='glow'></div> |
867 <div class='playercontrolsbox'> | 867 <div class='playercontrolsbox'> |
868 <div id='playercontrols'> | 868 <div id='playercontrols'> |
869 </div> | 869 </div> |
870 </div> | 870 </div> |
871 </body> | 871 </body> |
872 </html> | 872 </html> |
OLD | NEW |