Skip to content

Instantly share code, notes, and snippets.

@magicmanam
Created July 31, 2014 09:10
Show Gist options
  • Save magicmanam/d94090fa51ea9c4e63a5 to your computer and use it in GitHub Desktop.
Save magicmanam/d94090fa51ea9c4e63a5 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_tab {
width: 120px;
height: 40px;
left: 180px;
top: 50px;
position: absolute;
}
#paper_button {
left: 900px;
top: 240px;
position: absolute;
}
</style>
<paper-tab noink id="paper_tab">TABasdf</paper-tab>
<paper-button label="Paper Button" id="paper_button"></paper-button>
</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