Skip to content

Instantly share code, notes, and snippets.

@IPRIT
Created November 9, 2014 01:43
Show Gist options
  • Select an option

  • Save IPRIT/7b984597e0f1ef4c5775 to your computer and use it in GitHub Desktop.

Select an option

Save IPRIT/7b984597e0f1ef4c5775 to your computer and use it in GitHub Desktop.
designer
<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;
top: 0px;
left: 0px;
}
#paper_checkbox {
left: 870px;
top: 450px;
position: absolute;
}
</style>
<paper-checkbox label="click me" id="paper_checkbox"></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