Skip to content

Instantly share code, notes, and snippets.

@gpuido
Last active August 29, 2015 14:22
Show Gist options
  • Save gpuido/7381402557de4ffb6b31 to your computer and use it in GitHub Desktop.
Save gpuido/7381402557de4ffb6b31 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 110px;
top: 120px;
position: absolute;
}
#paper_checkbox {
left: 370px;
top: 170px;
position: absolute;
}
#paper_checkbox1 {
left: 430px;
top: 270px;
position: absolute;
}
#paper_checkbox2 {
left: 350px;
top: 260px;
position: absolute;
}
#paper_checkbox3 {
left: 260px;
top: 260px;
position: absolute;
}
#paper_checkbox4 {
left: 790px;
top: 170px;
}
</style>
<paper-button id="paper_button">button</paper-button>
<paper-checkbox id="paper_checkbox" label="click me"></paper-checkbox>
<paper-checkbox id="paper_checkbox1" label="click me"></paper-checkbox>
<paper-checkbox id="paper_checkbox2" label="click me"></paper-checkbox>
<paper-checkbox id="paper_checkbox3" label="click me"></paper-checkbox>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment