Skip to content

Instantly share code, notes, and snippets.

@filipstachura
Created September 6, 2014 11:12
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 filipstachura/dac81a49621efd7d4aaa to your computer and use it in GitHub Desktop.
Save filipstachura/dac81a49621efd7d4aaa to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-calculator/paper-calculator.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;
top: 0px;
left: 0px;
}
#chart_js {
width: 300px;
height: 200px;
left: 740px;
top: 40px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 690px;
top: 30px;
position: absolute;
}
</style>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<chart-js kind="Radar" id="chart_js"></chart-js>
</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