Created
July 31, 2014 09:10
-
-
Save magicmanam/d94090fa51ea9c4e63a5 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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