Skip to content

Instantly share code, notes, and snippets.

@tkhemani
Last active August 29, 2015 14:11
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 tkhemani/8378140a7f948ae5b640 to your computer and use it in GitHub Desktop.
Save tkhemani/8378140a7f948ae5b640 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-calculator/paper-calculator.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 900px;
top: 540px;
position: absolute;
}
#paper_button1 {
left: 960px;
top: 640px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 630px;
top: 380px;
position: absolute;
}
#paper_calculator1 {
width: 400px;
height: 560px;
left: 90px;
top: 220px;
position: absolute;
}
</style>
<paper-button id="paper_button">button</paper-button>
<paper-button id="paper_button1">button</paper-button>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<paper-calculator responsivewidth="2000px" id="paper_calculator1"></paper-calculator>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment