Skip to content

Instantly share code, notes, and snippets.

@tsdexter
Created October 3, 2014 13:45
Show Gist options
  • Save tsdexter/34751730169167d60478 to your computer and use it in GitHub Desktop.
Save tsdexter/34751730169167d60478 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<link rel="import" href="../cool-clock/cool-clock.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#cool_clock {
width: 170px;
height: 170px;
left: 1050px;
top: 230px;
position: absolute;
}
#smoothie_chart {
left: 1330px;
top: 750px;
position: absolute;
}
#paper_button {
left: 1570px;
top: 520px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 90px;
top: 80px;
position: absolute;
}
#paper_checkbox {
left: 1390px;
top: 350px;
position: absolute;
}
</style>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
<cool-clock skin="Tes2" id="cool_clock"></cool-clock>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<paper-calculator responsivewidth="2000px" expression="86+5" result="91" id="paper_calculator"></paper-calculator>
<paper-checkbox checked label="click me" id="paper_checkbox"></paper-checkbox>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment