summaryrefslogtreecommitdiffstats
path: root/core/res/assets/webkit/youtube.html
blob: 5a40c1e71f08b1cc186128b052b1993ca866fceb (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
54
55
56
57
58
59
<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">
      <table height="100%" width="100%" border="0" cellpadding="0"
        cellspacing="0">
        <tr>
          <td valign="middle">
            <img src="http://img.youtube.com/vi/VIDEO_ID/0.jpg" width="100%"/>
          </td>
        </tr>
      </table>
    </div>
    <div id="main">
      <table height="100%" width="100%">
        <tr>
          <td align="center" valign="middle" height="100%">
            <a id="url" href="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>