Skip to content

Instantly share code, notes, and snippets.

@fallen90
Created August 18, 2014 07:53
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 fallen90/cab839bbb6141a7418e4 to your computer and use it in GitHub Desktop.
Save fallen90/cab839bbb6141a7418e4 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.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;
top: 0px;
left: 0px;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 110px;
top: 80px;
position: absolute;
}
#paper_fab {
left: 790px;
top: 650px;
position: absolute;
}
</style>
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab>
<paper-calculator id="paper_calculator" responsivewidth="2000px"></paper-calculator>
</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