Created
August 21, 2014 13:50
-
-
Save dr34mc0d3r/1a570d7870f60e1ff2ef 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 rel="import" href="../speech-mic/speech-mic.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
left: 760px; | |
top: 340px; | |
position: absolute; | |
width: 210px; | |
height: 140px; | |
opacity: 0.5; | |
} | |
#speech_mic { | |
left: 970px; | |
top: 390px; | |
position: absolute; | |
} | |
</style> | |
<section id="section"> dfg dfg dgdf gdfg dfg fddf gdf g dfgdf g </section> | |
<speech-mic id="speech_mic"></speech-mic> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment