| 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; |
| 11 -webkit-transform: translateZ(0); | |
| 12 } | 11 } |
| 13 | 12 |
| 14 .error { | 13 .error { |
| 15 left: 0; | 14 left: 0; |
| 16 right: 0; | 15 right: 0; |
| 17 color: white; | 16 color: white; |
| 18 bottom: 38px; | 17 bottom: 38px; |
| 19 position: absolute; | 18 position: absolute; |
| 20 } | 19 } |
| 21 | 20 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 background-repeat: no-repeat; | 214 background-repeat: no-repeat; |
| 216 background-position: 6px 8px; | 215 background-position: 6px 8px; |
| 217 } | 216 } |
| 218 | 217 |
| 219 .playbackvideoelement { | 218 .playbackvideoelement { |
| 220 width: 100%; | 219 width: 100%; |
| 221 height: 100%; | 220 height: 100%; |
| 222 position: absolute; | 221 position: absolute; |
| 223 left: 0; | 222 left: 0; |
| 224 top: 0; | 223 top: 0; |
| 224 -webkit-transform: translateZ(0); |
| 225 } | 225 } |
| 226 | 226 |
| 227 .duration { | 227 .duration { |
| 228 right: 90px; | 228 right: 90px; |
| 229 color: white; | 229 color: white; |
| 230 position: absolute; | 230 position: absolute; |
| 231 top: 8.5px; | 231 top: 8.5px; |
| 232 font-size: .6em; | 232 font-size: .6em; |
| 233 height: 30px; | 233 height: 30px; |
| 234 } | 234 } |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 <body onload='load();' onselectstart='return false'> | 885 <body onload='load();' onselectstart='return false'> |
| 886 <div id='error' class='error'></div> | 886 <div id='error' class='error'></div> |
| 887 <div id='title' class='audiotitle'></div> | 887 <div id='title' class='audiotitle'></div> |
| 888 <div id='glow' class='glow'></div> | 888 <div id='glow' class='glow'></div> |
| 889 <div class='playercontrolsbox'> | 889 <div class='playercontrolsbox'> |
| 890 <div id='playercontrols'> | 890 <div id='playercontrols'> |
| 891 </div> | 891 </div> |
| 892 </div> | 892 </div> |
| 893 </body> | 893 </body> |
| 894 </html> | 894 </html> |
| OLD | NEW |