Skip to content

Instantly share code, notes, and snippets.

@graynorton
Created August 6, 2014 18:00
Show Gist options
  • Save graynorton/082b96f47e36577ac88f to your computer and use it in GitHub Desktop.
Save graynorton/082b96f47e36577ac88f to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#paper_button {
left: 340px;
top: 250px;
position: absolute;
}
#paper_checkbox {
left: 350px;
top: 310px;
position: absolute;
}
</style>
<paper-button label="Paper Button" id="paper_button"></paper-button>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
</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