Skip to content

Instantly share code, notes, and snippets.

@dr34mc0d3r
Created August 21, 2014 13:50
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 dr34mc0d3r/1a570d7870f60e1ff2ef to your computer and use it in GitHub Desktop.
Save dr34mc0d3r/1a570d7870f60e1ff2ef to your computer and use it in GitHub Desktop.
designer
<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