Created
January 24, 2016 11:22
-
-
Save clayrisser/2b403158dbba20185d46 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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