Last active
August 29, 2015 14:13
-
-
Save ClashTheBunny/3ba31e1d83e701128b82 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../speech-mic/speech-mic.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; | |
} | |
#yt_search_video { | |
width: 300px; | |
height: 300px; | |
left: 330px; | |
top: 130px; | |
position: absolute; | |
} | |
#speech_mic { | |
left: 170px; | |
top: 110px; | |
position: absolute; | |
} | |
#speech_mic1 { | |
display: none; | |
left: 720px; | |
top: 240px; | |
position: absolute; | |
} | |
</style> | |
<speech-mic id="speech_mic"></speech-mic> | |
<yt-search-video id="yt_search_video"></yt-search-video> | |
<speech-mic id="speech_mic1"></speech-mic> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment