Created
August 5, 2014 13:03
-
-
Save vorcigernix/e6031685aa92c4f4d6c6 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_input { | |
left: 600px; | |
top: 350px; | |
position: absolute; | |
} | |
</style> | |
<div horizontal center-justified layout> | |
<div><paper-input label="Type something..." id="paper_input"></paper-input></div> | |
</div> | |
</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