Skip to content

Instantly share code, notes, and snippets.

@ClashTheBunny
Last active August 29, 2015 14:13
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 ClashTheBunny/3ba31e1d83e701128b82 to your computer and use it in GitHub Desktop.
Save ClashTheBunny/3ba31e1d83e701128b82 to your computer and use it in GitHub Desktop.
designer
<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