Skip to content

Instantly share code, notes, and snippets.

@mpruessmeier
Last active August 29, 2015 14:15
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 mpruessmeier/f7ed9e36ed3eabf4ce37 to your computer and use it in GitHub Desktop.
Save mpruessmeier/f7ed9e36ed3eabf4ce37 to your computer and use it in GitHub Desktop.
designer
<link href="../core-pages/core-pages.html" rel="import">
<link href="../paper-button/paper-button.html" rel="import">
<link href="../paper-calculator/paper-calculator.html" rel="import">
<link href="../paper-checkbox/paper-checkbox.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#core_pages {
width: 95%;
height: 95%;
border: 1px solid silver;
left: 170px;
top: 30px;
position: absolute;
background: none repeat scroll 0% 0% rgb(200, 200, 200);
}
#paper_button {
left: 522px;
top: 159px;
position: absolute;
}
#paper_calculator {
width: 400px;
height: 560px;
left: 929px;
top: 149px;
position: absolute;
}
#paper_checkbox {
left: 169px;
top: 359px;
position: absolute;
}
#paper_button1 {
left: 432px;
top: 439px;
position: absolute;
}
</style>
<core-pages selected="0" selectedindex="0" notap id="core_pages" horizontal layout>
<section id="section1" active>
<paper-button id="paper_button">button</paper-button>
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
<paper-button id="paper_button1">button</paper-button>
</section>
</core-pages>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment