Skip to content

Instantly share code, notes, and snippets.

@clayrisser
Created January 24, 2016 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clayrisser/2b403158dbba20185d46 to your computer and use it in GitHub Desktop.
Save clayrisser/2b403158dbba20185d46 to your computer and use it in GitHub Desktop.
designer
<link href="../cool-clock/cool-clock.html" rel="import">
<link href="../yt-video/yt-search-video.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#cool_clock {
width: 400px;
height: 300px;
left: 210px;
top: 140px;
position: absolute;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 150px;
top: 40px;
position: absolute;
}
</style>
<cool-clock id="cool_clock"></cool-clock>
<yt-search-video id="yt_search_video"></yt-search-video>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment