Skip to content

Instantly share code, notes, and snippets.

@alexlopes
Last active November 9, 2016 21:04
Show Gist options
  • Select an option

  • Save alexlopes/71d20fbd829606217a31416ff863da78 to your computer and use it in GitHub Desktop.

Select an option

Save alexlopes/71d20fbd829606217a31416ff863da78 to your computer and use it in GitHub Desktop.
designer
<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;
top: 0px;
left: 0px;
}
#section {
box-sizing: border-box;
width: 420px;
height: 630px;
background-color: rgb(255, 255, 141);
left: 1060px;
top: 460px;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 280px;
top: 70px;
position: absolute;
}
</style>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
</template>
<script>
Polymer({
});
</script>
</polymer-element><section id="section" layout vertical center center-justified class="drag-element">
<div hero layout vertical center center-justified>
<span>+8</span>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment