summaryrefslogtreecommitdiffstats
path: root/core/res/assets/webkit/youtube.html
blob: 45d9c5ee03f7ae7f4121cb5dd085ad6c3fd989c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
  <head>
    <style type="text/css">
      body      { background-color: black; }
      a:hover   { text-decoration: none; }
      a:link    { color: black; }
      a:visited { color: black; }
      #bg {
        position: fixed;
        margin: 0px;
        border: 0px;
        padding: 0px;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }
      #main {
        position: absolute;
        left: 0%;
        top: 0%;
        width: 100%;
        height: 100%;
        padding: 0%;
        z-index: 10;
      }
    </style>
  </head>
  <body>
    <div id="bg">
      <img src="http://img.youtube.com/vi/VIDEO_ID/0.jpg"
      style="width:100%; height:100%"/>
    </div>
    <div id="main">
      <table height="100%" width="100%">
        <tr>
          <td align="center" valign="middle" height="100%">
            <a id="url" href="vnd.youtube:VIDEO_ID" target="_top">
              <img src="play.png" style="border:0px"/>
            </a>
          </td>
        </tr>
        <tr>
          <td valign="bottom" align="right">
            <img src="youtube.png" style="opacity:.7"/>
          </td>
        </tr>
      </table>
    </div>
  </body>
</html>