Skip to content

Instantly share code, notes, and snippets.

@joaomcarlos
Last active August 29, 2015 14:13
Show Gist options
  • Save joaomcarlos/e32dcca76025a62fe771 to your computer and use it in GitHub Desktop.
Save joaomcarlos/e32dcca76025a62fe771 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="../topeka-elements/topeka-profile.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_toast {
left: 500px;
top: 400px;
position: absolute;
}
#paper_toast1 {
left: 690px;
top: 1040px;
position: absolute;
}
#topeka_datasource {
left: 230px;
top: 310px;
position: absolute;
}
#smoothie_chart {
left: 340px;
top: 440px;
position: absolute;
}
</style>
<topeka-app selected="profile" disableleaderboard id="topeka_app" vertical layout></topeka-app>
<topeka-profile id="topeka_profile" center layout vertical></topeka-profile>
<paper-ripple id="paper_ripple"></paper-ripple>
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment