Skip to content

Instantly share code, notes, and snippets.

@melatonin355
Last active September 23, 2016 05:24
Show Gist options
  • Save melatonin355/6660225ddd4c50e755a6f7956a0cfc31 to your computer and use it in GitHub Desktop.
Save melatonin355/6660225ddd4c50e755a6f7956a0cfc31 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<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;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 380px;
top: 100px;
position: absolute;
}
#speech_mic {
left: 630px;
top: 110px;
position: absolute;
}
</style>
<topeka-app selected="profile" disableleaderboard id="topeka_app" vertical layout></topeka-app>
<speech-mic id="speech_mic"></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