Skip to content

Instantly share code, notes, and snippets.

@alfonsodev
Created November 26, 2014 13:38
Show Gist options
  • Select an option

  • Save alfonsodev/1516d02640248cfe6328 to your computer and use it in GitHub Desktop.

Select an option

Save alfonsodev/1516d02640248cfe6328 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="../ace-element/ace-element.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../chart-js/chart-js.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#topeka_app {
width: 590px;
height: 720px;
min-height: 450px;
left: 140px;
top: 40px;
position: absolute;
}
#ace_element {
width: 400px;
height: 300px;
left: 450px;
top: 190px;
position: absolute;
}
#chart_js {
width: 300px;
height: 200px;
left: 440px;
top: 220px;
position: absolute;
}
#cool_clock {
width: 400px;
height: 300px;
left: 410px;
top: 130px;
position: absolute;
}
</style>
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" vertical layout></topeka-app>
<ace-element id="ace_element">function test() {
var x = true;
}</ace-element>
<cool-clock id="cool_clock"></cool-clock>
<chart-js id="chart_js"></chart-js>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment