Skip to content

Instantly share code, notes, and snippets.

@koacms-deployment
Created September 17, 2015 18:54
Show Gist options
  • Save koacms-deployment/de26dcac521c3f993c80 to your computer and use it in GitHub Desktop.
Save koacms-deployment/de26dcac521c3f993c80 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 410px;
top: 270px;
position: absolute;
}
#paper_input {
left: 320px;
top: 130px;
position: absolute;
}
</style>
<paper-button id="paper_button">button</paper-button>
<paper-input label="Type something..." id="paper_input"></paper-input>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment