Skip to content

Instantly share code, notes, and snippets.

@cskiwi
Created July 8, 2014 14:06

Revisions

  1. cskiwi created this gist Jul 8, 2014.
    32 changes: 32 additions & 0 deletions designer.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,32 @@
    <link rel="import" href="../yt-video/yt-search-video.html">

    <polymer-element name="my-element">

    <template>
    <style>
    :host {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    }
    #yt_search_video {
    width: 300px;
    height: 300px;
    left: 590px;
    top: 180px;
    position: absolute;
    }
    </style>
    <yt-search-video id="yt_search_video"></yt-search-video>
    </template>

    <script>

    Polymer('my-element', {

    });

    </script>

    </polymer-element>