Created
March 27, 2015 19:23
-
-
Save DINESHKARPE/ddd9ee03fa97b29ee760 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="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#paper_input { | |
left: 300px; | |
top: 120px; | |
position: absolute; | |
} | |
#paper_input1 { | |
left: 300px; | |
top: 160px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 320px; | |
top: 290px; | |
position: absolute; | |
background-color: rgb(23, 188, 23); | |
} | |
#paper_input2 { | |
left: 300px; | |
top: 200px; | |
position: absolute; | |
} | |
</style> | |
<paper-input label="Type something..." value="First Name" committedvalue="First Name" id="paper_input"></paper-input> | |
<paper-input label="Type something..." value="Last Name" committedvalue="Last Name" id="paper_input1"></paper-input> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-input label="Type something..." value="Email" committedvalue="Email" id="paper_input2"></paper-input> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment